using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace zzz.Model.Entity { /// /// 生成工单 /// [SugarTable("plan_order")] public class plan_order { /// /// 内码 /// [SugarColumn(IsNullable = false, ColumnDescription = "内码", ColumnDataType = "int")] public long FID { get; set; } /// /// 单据编号 /// [SugarColumn(IsNullable = true, ColumnDescription = "单据编号", Length = 255)] public string FBILL_NO { get; set; } /// /// 单据类型 /// [SugarColumn(IsNullable = true, ColumnDescription = "单据类型", Length = 255)] public string FBILL_TYPE { get; set; } /// /// 单据时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "单据时间")] public DateTime? FDATE { get; set; } /// /// 单据状态 /// [SugarColumn(IsNullable = true, ColumnDescription = "单据状态", Length = 255)] public string FDOCUMENT_STATUS { get; set; } /// /// 产品类型 /// [SugarColumn(IsNullable = true, ColumnDescription = "产品类型", Length = 255)] public string FPRODUCT_TYPE { get; set; } /// /// 入库编号 /// [SugarColumn(IsNullable = true, ColumnDescription = "入库编号")] public long FENTRY_ID { get; set; } /// /// 物料编码 /// [SugarColumn(IsNullable = true, ColumnDescription = "物料编码", Length = 255)] public string FMATERIAL_ID { get; set; } /// /// 产品编码 /// [SugarColumn(IsNullable = true, ColumnDescription = "产品编码", Length = 255)] public string FNUMBER { get; set; } /// /// 产品名称 /// [SugarColumn(IsNullable = true, ColumnDescription = "产品名称", Length = 255)] public string FMATERIAL_NAME { get; set; } /// /// 产品规格 /// [SugarColumn(IsNullable = true, ColumnDescription = "产品规格", Length = 255)] public string FSPECIFICATION { get; set; } /// /// 生产车间 /// [SugarColumn(IsNullable = true, ColumnDescription = "生产车间", Length = 255)] public string FWORK_SHOP { get; set; } /// /// 单位 /// [SugarColumn(IsNullable = true, ColumnDescription = "单位", Length = 255)] public string FUNIT_ID { get; set; } /// /// 计划生产数量 /// [SugarColumn(IsNullable = true, ColumnDescription = "单据状态")] public decimal? FQTY { get; set; } /// /// 合格品数量 /// [SugarColumn(IsNullable = true, ColumnDescription = "合格品数量")] public decimal? FREPQUAAUX_QTY { get; set; } /// /// 不良品数量 /// [SugarColumn(IsNullable = true, ColumnDescription = "不良品数量")] public decimal? FREPFAILAUX_QTY { get; set; } /// /// 生产状态 /// [SugarColumn(IsNullable = true, ColumnDescription = "生产状态", Length = 255)] public string FSTATUS { get; set; } /// /// 计划开始时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "计划开始时间", Length = 255)] public string FPLAN_START_DATE { get; set; } /// /// 计划完成时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "计划完成时间", Length = 255)] public string FPLAN_FINISH_DATE { get; set; } /// /// 开工时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "开工时间", Length = 255)] public string FSTART_DATE { get; set; } /// /// 完工时间 /// [SugarColumn(IsNullable = true, ColumnDescription = "完工时间", Length = 255)] public string FFINISH_DATE { get; set; } } }