using System; using SqlSugar; namespace MES.Service.Modes { /// /// ZZCXA 主表 /// [SugarTable("ZZCXA")] public class Zzcxa { /// /// 主键ID /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_ZZCXA")] public decimal? Id { get; set; } /// /// 单据编码 /// [SugarColumn(ColumnName = "BILL_NO")] public string BillNo { get; set; } /// /// 单据类型 /// [SugarColumn(ColumnName = "DJ_LX")] public string DjLx { get; set; } /// /// 库存组织 /// [SugarColumn(ColumnName = "KC_ZZ")] public string KcZz { get; set; } /// /// 事务类型 /// [SugarColumn(ColumnName = "SW_LX")] public string SwLx { get; set; } /// /// 日期 /// [SugarColumn(ColumnName = "TIME")] public string Time { get; set; } /// /// 部门 /// [SugarColumn(ColumnName = "BM")] public string Bm { get; set; } /// /// 仓管员 /// [SugarColumn(ColumnName = "CGY")] public string Cgy { get; set; } /// /// 库存组 /// [SugarColumn(ColumnName = "KCZ")] public string Kcz { get; set; } /// /// 单据状态 /// [SugarColumn(ColumnName = "DJ_ZT")] public string DjZt { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "MEMO")] public string Memo { get; set; } /// /// 成品货主类型 /// [SugarColumn(ColumnName = "CPHZLX")] public string Cphzlx { get; set; } /// /// 成品货主 /// [SugarColumn(ColumnName = "CPHZ")] public string Cphz { get; set; } /// /// 子件货主类型 /// [SugarColumn(ColumnName = "ZJHZLX")] public string Zjhzlx { get; set; } /// /// 子件货主 /// [SugarColumn(ColumnName = "ZJHZ")] public string Zjhz { get; set; } /// /// 物料编码id /// [SugarColumn(ColumnName = "ITEM_ID")] public decimal? ItemId { get; set; } /// /// 数量 /// [SugarColumn(ColumnName = "QTY")] public decimal? Qty { get; set; } /// /// 单位 /// [SugarColumn(ColumnName = "UNIT")] public string Unit { get; set; } /// /// 仓库 /// [SugarColumn(ColumnName = "DEPOT_ID")] public string DepotId { get; set; } /// /// ERP 主表id /// [SugarColumn(ColumnName = "ERPID")] public string Erpid { get; set; } } }