¶Ô±ÈÐÂÎļþ |
| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.ComponentModel.DataAnnotations.Schema; |
| | | using System.Text; |
| | | |
| | | namespace WIDESEA_DTO |
| | | { |
| | | [SugarTable(nameof(dt_needBarcode), "å¨éæ°æ®")] |
| | | public class dt_needBarcode |
| | | { |
| | | [Key] |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç®æ åºåº |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "ç®æ åºåº")] |
| | | public string toArea { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¥æºåºåº |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "æ¥æºåºåº")] |
| | | public string fromArea { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æçç±»å |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "æçç±»å")] |
| | | public string barcodeType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 产线 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "æå±äº§çº¿")] |
| | | public string productLine { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¨éæ°é |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "å¨éæ°é")] |
| | | public int inLineNum { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç®æ ç¼åæ°é |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 10, ColumnDescription = "å¯ç¼åæ°é")] |
| | | public int cacheNum { get; set; } = 0; |
| | | |
| | | /// <summary> |
| | | /// å·²å建åºåºä»»å¡æ°é |
| | | /// </summary> |
| | | //[NotMapped] |
| | | //public int haveOutNum { get; set; } = 0; |
| | | } |
| | | } |