using SqlSugar; 
 | 
using System; 
 | 
using System.Collections.Generic; 
 | 
using System.ComponentModel.DataAnnotations; 
 | 
using System.ComponentModel.DataAnnotations.Schema; 
 | 
using System.Text; 
 | 
using WIDESEA_Core.DB.Models; 
 | 
using WIDESEA_Model.Models; 
 | 
  
 | 
namespace WIDESEAWCS_Model.Models 
 | 
{ 
 | 
    [SugarTable("dt_needBarcode")] 
 | 
    public class dt_needBarcode : BaseEntity 
 | 
    { 
 | 
        [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; 
 | 
    } 
 | 
} 
 |