¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | |
| | | namespace MES.Service.Modes; |
| | | |
| | | /// <summary> |
| | | /// æºå°ä¸äººå对ç
§ |
| | | /// </summary> |
| | | [SugarTable("MES_LINE_USER")] |
| | | public class MesLineUser |
| | | { |
| | | /// <summary> |
| | | /// åºåSEQ_LINE_US |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] |
| | | public decimal Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æºå°ç¼ç |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LINE_NO")] |
| | | public string? LineNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æºå°ä¸æ |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LINE_NAME")] |
| | | public string? LineName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 人åç¼ç |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FCODE")] |
| | | public string? Fcode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 人ååç§° |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FNAME")] |
| | | public string? Fname { get; set; } |
| | | } |