| ¶Ô±ÈÐÂÎļþ |
| | |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using SqlSugar; |
| | | using WIDESEA_Core.DB.Models; |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | [SugarTable(nameof(Dt_StockInfoDetailCP), "æååºåä¿¡æ¯æç»")] |
| | | public class Dt_StockInfoDetailCP : BaseEntity |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "åºåæç»ID")] |
| | | public int StockDetailId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç®±ID")] |
| | | public float BoxId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "ç®±å·")] |
| | | public string BoxCode { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "卿ç ")] |
| | | public string DateCode { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "ç产åå·")] |
| | | public string PartNum { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç©æID")] |
| | | public float JobId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "PCSæ°é")] |
| | | public float QtyOfpcs { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "åæ¿æ°")] |
| | | public float QtyOfxout { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç¶æ")] |
| | | public int CPStockDetailStatus { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "LPNNO")] |
| | | public string LPNNO { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "WMSæºåºä½")] |
| | | public string OrinalLocation { get; set; } |
| | | |
| | | } |
| | | } |