namespace DOAN.Model.Business
{
///
///
///
[SugarTable("processmodel_work_step")]
public class ProcessmodelWorkStep
{
///
/// 主键ID
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 工步编码
///
[SugarColumn(ColumnName = "step_code")]
public string StepCode { get; set; }
///
/// 工步名称
///
[SugarColumn(ColumnName = "step_name")]
public string StepName { get; set; }
///
/// 所属工序code
///
[SugarColumn(ColumnName = "process_code")]
public string ProcessCode { get; set; }
///
/// 工步描述
///
public string Description { get; set; }
///
/// 是否有效:1=有效,0=无效
///
[SugarColumn(ColumnName = "is_active")]
public string IsActive { get; set; }
///
/// 唯一键对应
///
[SugarColumn(ColumnName = "unique_value")]
public string UniqueValue { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "create_by")]
public string CreateBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "update_by")]
public string UpdateBy { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
public class UniqueValueQueryDto
{
public long Id { get; set; }
public string DeviceCode { get; set; }
public string DeviceName { get; set; }
public string Workshop { get; set; }
public string Workline { get; set; }
public int? Status { get; set; }
public string DeviceSpecification { get; set; }
public string ResponsiblePerson { get; set; }
}
}