| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | |
| | | namespace PadApplication.Entites.DbModels; |
| | | |
| | | /// <summary> |
| | | /// 齿轮æºå°macç ç»å®pda |
| | | /// </summary> |
| | | [SugarTable("DEV_MAC_BYCL")] |
| | | public class DevMacBycl |
| | | { |
| | | /// <summary> |
| | | /// SEQ_ORDER |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] |
| | | public decimal Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 齿轮æºå°ç¼å· |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "MACHINE_NO")] |
| | | public string? MachineNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 设å¤ç¼å· |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "DEV_NO")] |
| | | public string? DevNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 设å¤å¯ä¸ç |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "UNIQUE_BARCODE")] |
| | | public string? UniqueBarcode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "PDA_MAC")] |
| | | public string? PdaMac { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "print_MAC")] |
| | | public string? PrintMac { get; set; } |
| | | } |