| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- namespace Admin.NET.Plugin.AiDOP.Order;
- /// <summary>计划联动看板</summary>
- [SugarTable("LinkagePlan", "计划联动看板")]
- [IgnoreTable]
- public class LinkagePlan
- {
- [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = false)]
- public long Id { get; set; }
- /// <summary>订单编号</summary>
- [SugarColumn(ColumnName = "bill_no", Length = 64, IsNullable = true)]
- public string? BillNo { get; set; }
- /// <summary>客户编码</summary>
- [SugarColumn(ColumnName = "custom_no", Length = 64, IsNullable = true)]
- public string? CustomNo { get; set; }
- /// <summary>订单类型</summary>
- [SugarColumn(ColumnName = "order_type", Length = 32, IsNullable = true)]
- public string? OrderType { get; set; }
- /// <summary>物料代码</summary>
- [SugarColumn(ColumnName = "item_number", Length = 64, IsNullable = true)]
- public string? ItemNumber { get; set; }
- /// <summary>物料名称</summary>
- [SugarColumn(ColumnName = "Descr", Length = 256, IsNullable = true)]
- public string? Descr { get; set; }
- /// <summary>规格型号</summary>
- [SugarColumn(ColumnName = "Descr1", Length = 256, IsNullable = true)]
- public string? Descr1 { get; set; }
- /// <summary>产品类型</summary>
- [SugarColumn(ColumnName = "ItemType", Length = 64, IsNullable = true)]
- public string? ItemType { get; set; }
- /// <summary>数量</summary>
- [SugarColumn(ColumnName = "qty", IsNullable = true)]
- public decimal? Qty { get; set; }
- /// <summary>生产通知</summary>
- [SugarColumn(ColumnName = "update_time", IsNullable = true)]
- public DateTime? UpdateTime { get; set; }
- /// <summary>合同交期</summary>
- [SugarColumn(ColumnName = "sys_capacity_date", IsNullable = true)]
- public DateTime? SysCapacityDate { get; set; }
- /// <summary>计划管控</summary>
- [SugarColumn(ColumnName = "type", Length = 32, IsNullable = true)]
- public string? Type { get; set; }
- /// <summary>Bom设计开始</summary>
- [SugarColumn(ColumnName = "bomstart", Length = 80, IsNullable = true)]
- public string? BomStart { get; set; }
- /// <summary>Bom设计结束</summary>
- [SugarColumn(ColumnName = "bomend", Length = 80, IsNullable = true)]
- public string? BomEnd { get; set; }
- /// <summary>工艺设计开始</summary>
- [SugarColumn(ColumnName = "linestart", Length = 80, IsNullable = true)]
- public string? LineStart { get; set; }
- /// <summary>工艺设计结束</summary>
- [SugarColumn(ColumnName = "lineend", Length = 80, IsNullable = true)]
- public string? LineEnd { get; set; }
- /// <summary>生产开始</summary>
- [SugarColumn(ColumnName = "productstart", Length = 80, IsNullable = true)]
- public string? ProductStart { get; set; }
- /// <summary>生产结束</summary>
- [SugarColumn(ColumnName = "productend", Length = 80, IsNullable = true)]
- public string? ProductEnd { get; set; }
- /// <summary>物料需求</summary>
- [SugarColumn(ColumnName = "needtime", Length = 80, IsNullable = true)]
- public string? NeedTime { get; set; }
- /// <summary>物料满足</summary>
- [SugarColumn(ColumnName = "sys_material_date", Length = 80, IsNullable = true)]
- public string? SysMaterialDate { get; set; }
- /// <summary>采购下单</summary>
- [SugarColumn(ColumnName = "cgneedtime", Length = 80, IsNullable = true)]
- public string? CgNeedTime { get; set; }
- /// <summary>采购到货</summary>
- [SugarColumn(ColumnName = "cgend", Length = 80, IsNullable = true)]
- public string? CgEnd { get; set; }
- /// <summary>备料开始</summary>
- [SugarColumn(ColumnName = "blstart", Length = 80, IsNullable = true)]
- public string? BlStart { get; set; }
- /// <summary>备料结束</summary>
- [SugarColumn(ColumnName = "blend", Length = 80, IsNullable = true)]
- public string? BlEnd { get; set; }
- /// <summary>报工开始</summary>
- [SugarColumn(ColumnName = "starttime", Length = 80, IsNullable = true)]
- public string? StartTime { get; set; }
- /// <summary>报工结束</summary>
- [SugarColumn(ColumnName = "endtime", Length = 80, IsNullable = true)]
- public string? EndTime { get; set; }
- /// <summary>IQC检验开始</summary>
- [SugarColumn(ColumnName = "ipqcjystart", Length = 80, IsNullable = true)]
- public string? IpqcJyStart { get; set; }
- /// <summary>IQC检验结束</summary>
- [SugarColumn(ColumnName = "ipqcjyend", Length = 80, IsNullable = true)]
- public string? IpqcJyEnd { get; set; }
- /// <summary>FQC检验开始</summary>
- [SugarColumn(ColumnName = "fqcjystart", Length = 80, IsNullable = true)]
- public string? FqcJyStart { get; set; }
- /// <summary>FQC检验结束</summary>
- [SugarColumn(ColumnName = "fqcjyend", Length = 80, IsNullable = true)]
- public string? FqcJyEnd { get; set; }
- /// <summary>入库开始</summary>
- [SugarColumn(ColumnName = "rkstart", Length = 80, IsNullable = true)]
- public string? RkStart { get; set; }
- /// <summary>入库结束</summary>
- [SugarColumn(ColumnName = "rkend", Length = 80, IsNullable = true)]
- public string? RkEnd { get; set; }
- /// <summary>发运开始</summary>
- [SugarColumn(ColumnName = "fystarttime", Length = 80, IsNullable = true)]
- public string? FyStartTime { get; set; }
- /// <summary>发运结束</summary>
- [SugarColumn(ColumnName = "fyendtime", Length = 80, IsNullable = true)]
- public string? FyEndTime { get; set; }
- /// <summary>排序</summary>
- [SugarColumn(ColumnName = "levelnum", IsNullable = true)]
- public int? LevelNum { get; set; }
- /// <summary>背景色</summary>
- [SugarColumn(ColumnName = "background", Length = 32, IsNullable = true)]
- public string? Background { get; set; }
- }
|