1
huangxiaoqiang
13 小时以前 a296223898d61a9838bbd35ed75c87575e308a36
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/BasicModel/DtStockInfoDetail.cs
@@ -39,13 +39,25 @@
    public string MaterielName { get; set; }
    /// <summary>
    /// éœ€æ±‚分类
    /// </summary>
    [SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "需求分类")]
    public string DemandClassification { get; set; }
    /// <summary>
    /// ä»“库
    /// </summary>
    [SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "仓库")]
    public string Warehouse { get; set; }
    /// <summary>
    /// å•据编号 / é€šé“
    /// ä»“库ID
    /// </summary>
    [SugarColumn(IsNullable = false, ColumnDescription = "WareHouseId")]
    public string WareHouseId { get; set; }
    /// <summary>
    /// å•据编号
    /// </summary>
    [Required]
    [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "单据编号")]
@@ -76,6 +88,12 @@
    public decimal Quantity { get; set; }
    /// <summary>
    /// å‡ºåº“数量
    /// </summary>
    [SugarColumn(IsNullable = true, DecimalDigits = 4, ColumnDescription = "数量", DefaultValue = "0")]
    public decimal OutboundQuantity { get; set; }
    /// <summary>
    /// ç»„盘状态 ç”µèŠ¯çŠ¶æ€
    /// </summary>
    [Required]
@@ -96,8 +114,15 @@
    public string Date { get; set; }
    /// <summary>
    /// è°ƒæ‹¨ä»“库
    /// </summary>
    [SugarColumn(IsNullable = true, ColumnDescription = "调拨仓库")]
    public string AllocateWarehouse { get; set; }
    /// <summary>
    /// å¤‡æ³¨
    /// </summary>
    [SugarColumn(IsNullable = true, ColumnDescription = "备注")]
    public string Remark { get; set; }
}