namespace DOAN.Model.Business { /// /// **车间_**产线_**工位_**业务 /// [SugarTable("assembly_line01_workstation09_business")] public class AssemblyLine01Workstation09Business { /// /// 参数名称 /// public string Paramter { get; set; } /// /// 参数值 /// public decimal Datavalue { get; set; } /// /// 上限 /// [SugarColumn(ColumnName = "up_limit")] public decimal UpLimit { get; set; } /// /// 下限 /// [SugarColumn(ColumnName = "low_limit")] public decimal LowLimit { get; set; } /// /// 单位 /// public string Unit { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } /// /// 自增长ID主键 /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 公司 /// public string Company { get; set; } /// /// 车间 /// public string Workshop { get; set; } /// /// 产线 /// public string Linecode { get; set; } /// /// 工位 /// public string Workstation { get; set; } /// /// 作业时间 /// public DateTime? Operationtime { get; set; } /// /// 操作用户工号 /// public string Operationuserid { get; set; } /// /// 设备ID /// public string Deviceid { get; set; } /// /// 是否已经上传MES标识 /// [SugarColumn(ColumnName = "mes_flag")] public string MesFlag { get; set; } } }