using System; using System.Collections.Generic; using System.Linq; using System.Text; //---------------------------------------------------------------- //Module Name: $safeprojectname$ //Purpose: //CopyRight: Muchinfo //History: //---------------------------------------------------------------- //DateTime 2017/1/12 19:20:30 //Author //Description Create //---------------------------------------------------------------- namespace Muchinfo.MTPClient.Data.Model { public class DepositOrder { // depositId int32 optional 托管计划ID //storeinId int64 optional 入库单ID //accountId int64 required 用户ID //depositType int32 optional 托管计划类型 //depositNum int64 optional 托管数量 //warehouseId int32 optional 仓库ID /// /// 托管计划ID /// public long DepositId { get; set; } /// /// 入库单ID /// public Int64 StoreinId { get; set; } /// /// 用户ID /// public ulong Accountid { get; set; } /// /// 托管计划类型 /// public eBuildType BuildType { get; set; } /// /// 托管数量 /// public decimal DepositNum { get; set; } /// /// 仓库ID /// public long WarehouseId { get; set; } } }