using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//----------------------------------------------------------------
//Module Name: $safeprojectname$
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime 2016/7/11 14:43:05
//Author
//Description Create
//----------------------------------------------------------------
namespace Muchinfo.MTPClient.Data.Model.Account
{
public class PrepostTransferOrder
{
///
/// 预埋单号
///
public long PrepostID { get; set; }
///
/// 客户端流水号
///
public string ClientSerialNo { get; set; }
///
/// 商品
///
public uint GoodsID { get; set; }
///
/// 单据状态
///
public uint PrepostStatus { get; set; }
}
}