| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- namespace Admin.NET.Plugin.AiDOP.Order;
- /// <summary>
- /// 閿€鍞鍗曟槑缁嗚〃锛坈rm_seorderentry锛?/// </summary>
- [SugarTable("crm_seorderentry", "閿€鍞鍗曟槑缁嗚〃")]
- public class SeOrderEntry
- {
- [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = false)]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "seorder_id")]
- public long SeOrderId { get; set; }
- [SugarColumn(ColumnName = "bill_no", Length = 64)]
- public string? BillNo { get; set; }
- [SugarColumn(ColumnName = "entry_seq")]
- public int? EntrySeq { get; set; }
- [SugarColumn(ColumnName = "item_number", Length = 64)]
- public string? ItemNumber { get; set; }
- [SugarColumn(ColumnName = "item_name", Length = 128)]
- public string? ItemName { get; set; }
- [SugarColumn(ColumnName = "specification", Length = 256)]
- public string? Specification { get; set; }
- [SugarColumn(ColumnName = "unit", Length = 32)]
- public string? Unit { get; set; }
- [SugarColumn(ColumnName = "qty")]
- public decimal? Qty { get; set; }
- /// <summary>瀹㈡埛瑕佹眰浜ゆ湡</summary>
- [SugarColumn(ColumnName = "plan_date")]
- public DateTime? PlanDate { get; set; }
- /// <summary>鏈€缁堜氦璐ф棩鏈?/summary>
- [SugarColumn(ColumnName = "date")]
- public DateTime? Date { get; set; }
- /// <summary>绯荤粺寤鸿浜ゆ湡锛堜骇鑳斤級</summary>
- [SugarColumn(ColumnName = "sys_capacity_date")]
- public DateTime? SysCapacityDate { get; set; }
- [SugarColumn(ColumnName = "remark", Length = 512)]
- public string? Remark { get; set; }
- /// <summary>0=鍐嶈瘎瀹?1=鏂板缓 2=璇勫 3=纭</summary>
- [SugarColumn(ColumnName = "progress")]
- public int? Progress { get; set; } = 1;
- [SugarColumn(ColumnName = "deliver_count")]
- public decimal? DeliverCount { get; set; }
- [SugarColumn(ColumnName = "create_by")]
- public long? CreateBy { get; set; }
- [SugarColumn(ColumnName = "IsDeleted")]
- public int IsDeleted { get; set; } = 0;
- [SugarColumn(ColumnName = "create_time")]
- public DateTime? CreateTime { get; set; }
- [SugarColumn(ColumnName = "update_time")]
- public DateTime? UpdateTime { get; set; }
- /// <summary>绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
- [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
- public long? TenantId { get; set; }
- }
|