| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEAWCS_Core.DB.Models; |
| | | |
| | | namespace WIDESEAWCS_Model.Models |
| | | { |
| | | [SugarTable(nameof(Dt_MaterialInfo), "ç©æä¿¡æ¯ç»ç表")] |
| | | public class Dt_MaterialInfo : BaseEntity |
| | | { |
| | | /// <summary> |
| | | /// ä¸»é® |
| | | /// </summary> |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç©æåç§° é¶ä»¶å· |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, ColumnDescription = "ç©æåç§°")] |
| | | public string MaterialName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨ç¼å· |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, ColumnDescription = "容å¨ç¼å·")] |
| | | public string ContainerCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨å½å对åºä½ç½® |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, ColumnDescription = "容å¨å½å对åºä½ç½®")] |
| | | public string Position { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨åºåºä½ç½® |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "容å¨åºåºä½ç½®")] |
| | | public string EndPosition { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦æ°å¢å¢å®¹å¨ |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "æ¯å¦å±äºæ°å¢å®¹å¨", DefaultValue = "0")] |
| | | public bool IsNew { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容卿¯å¦ç»å® |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "容卿¯å¦ç»å®", DefaultValue = "1")] |
| | | public bool IsBind { get; set; } = true; |
| | | |
| | | /// <summary> |
| | | /// 车å |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "车å")] |
| | | public string Carmodel { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åºå |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "åºå")] |
| | | public string Region { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ç¨å段1 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "å¤ç¨å段1")] |
| | | public string? location_bak_1 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ç¨å段2 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "å¤ç¨å段2")] |
| | | public string? location_bak_2 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¤ç¨å段3 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 255, ColumnDataType = "nvarchar", ColumnDescription = "å¤ç¨å段3")] |
| | | public string? location_bak_3 { get; set; } |
| | | } |
| | | } |