| | |
| | | using SqlSugar; |
| | | using System; |
| | | |
| | | namespace MES.Service.Modes |
| | | { |
| | | namespace MES.Service.Modes; |
| | | |
| | | /// <summary> |
| | | /// PCB器件检测数据表 |
| | | /// </summary> |
| | |
| | | /// <summary> |
| | | /// 主键ID |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_PCB_COMPONENT_DATA", IsPrimaryKey = true)] |
| | | [SugarColumn(ColumnName = "ID", |
| | | OracleSequenceName = "SEQ_PCB_COMPONENT_DATA", IsPrimaryKey = true)] |
| | | public decimal Id { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "REMARKS")] |
| | | public string? Remarks { get; set; } |
| | | } |
| | | } |