using SqlSugar; namespace MES.Service.Modes; /// /// 机台与人员对照 /// [SugarTable("MES_LINE_USER")] public class MesLineUser { /// /// 序列SEQ_LINE_US /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal Id { get; set; } /// /// 机台编码 /// [SugarColumn(ColumnName = "LINE_NO")] public string? LineNo { get; set; } /// /// 机台中文 /// [SugarColumn(ColumnName = "LINE_NAME")] public string? LineName { get; set; } /// /// 人员编码 /// [SugarColumn(ColumnName = "FCODE")] public string? Fcode { get; set; } /// /// 人员名称 /// [SugarColumn(ColumnName = "FNAME")] public string? Fname { get; set; } }