using SqlSugar; namespace Gs.Entity.BaseInfo; /// /// [SugarTable("MES_WORKSHOP_LINE")] public class MesWorkshopLine { /// /// 主键 /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid? Guid { get; set; } /// /// 车间编号 /// [SugarColumn(ColumnName = "dpt_id")] public string DptId { get; set; } /// /// 产线编号 /// [SugarColumn(ColumnName = "line_no")] public string LineNo { get; set; } /// /// 产线名称 /// [SugarColumn(ColumnName = "name")] public string Name { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "remark")] public string Remark { get; set; } /// /// 建立时间 /// [SugarColumn(ColumnName = "create_date", IsOnlyIgnoreUpdate = true)] public DateTime? CreateDate { get; set; } /// /// 建立者 /// [SugarColumn(ColumnName = "create_by", IsOnlyIgnoreUpdate = true)] public string CreateBy { get; set; } /// /// 更新者 /// [SugarColumn(ColumnName = "lastupdate_by")] public string LastupdateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "lastupdate_date")] public DateTime? LastupdateDate { get; set; } /// /// 状态 /// [SugarColumn(ColumnName = "is_status")] public bool? IsStatus { get; set; } /// /// 线体类别 /// [SugarColumn(ColumnName = "line_type")] public string? LineType { get; set; } /// /// 整线报工 /// [SugarColumn(ColumnName = "is_zxbg")] public bool? isZxbg { get; set; } /// /// 使用组织 /// [SugarColumn(IsIgnore = true)] public string FSubsidiary { get; set; } /// /// /// [SugarColumn(IsIgnore = true)] public string departName { get; set; } [SugarColumn(ColumnName = "id", IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)] public int Id { get; set; } }