| | |
| | | using SqlSugar; |
| | | |
| | | namespace NewPdaSqlServer.entity |
| | | { |
| | | namespace NewPdaSqlServer.entity; |
| | | |
| | | /// <summary> |
| | | /// |
| | | ///</summary> |
| | | [SugarTable("MES_DEPOT_SECTIONS")] |
| | | public class MesDepotSections |
| | | { |
| | | /// <summary> |
| | | /// |
| | | /// 默认值: (newid()) |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] |
| | | public Guid Guid { get; set; } |
| | | |
| | | /// <summary> |
| | | /// |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "depot_guid")] |
| | | public Guid? DepotGuid { get; set; } |
| | |
| | | public DateTime? LastupdateDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "company")] |
| | | public string? Company { get; set; } |
| | | |
| | | /// <summary> |
| | | /// |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "factory")] |
| | | public string? Factory { get; set; } |
| | |
| | | public string? DepotSectionNamet { get; set; } |
| | | |
| | | /// <summary> |
| | | /// |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "erpid")] |
| | | public int? Erpid { get; set; } |
| | |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? DepotName { get; set; } |
| | | } |
| | | } |