You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace ICSSoft.Entity { public class ICSAssemVouch { /// <summary>
/// 部门
/// </summary>
public string DepCode { get; set; }
/// <summary>
/// 用户编号
/// </summary>
public string User { get; set; } public bool UpdateStock { get; set; } public DateTime MTime { get; set; } /// <summary>
/// 入库
/// </summary>
public string InWhCode { get; set; } public string WorkPoint { get; set; } /// <summary>
/// 出库
/// </summary>
public string OutWhCode { get; set; }
public List<ICSAssemVouchs> details { get; set; } } public class ICSAssemVouchs {
public string Sequence { get; set; }
public string GroupNO { get; set; }
public string Type { get; set; }
public string InvCode { get; set; }
public string WHCode { get; set; }
public string BatchCode { get; set; }
public string ProjectCode { get; set; }
public decimal Quantity { get; set; }
public decimal Amount { get; set; }
} }
|