using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HH.WCS.Mobox3.HD.models
|
{
|
[SugarTable("TN_Mould_Cntr")]
|
internal class MouldCntr : BaseModel
|
{
|
public string S_CNTR_CODE { get; set; } // 容器编码
|
public string S_ITEM_CODE { get; set; } // 模具编号
|
/* public string S_MOULD_NAME { get; set; } // 模具编号*/
|
public string S_MOULD_NO { get; set; } // 模具序号
|
public string S_LOC_CODE { get; set; } // 货位编码
|
public string S_ABLE_FLAG { get; set; } // 是否可用
|
public string S_MOULD_TYPE { get; set; } // 模具类型 主片模具 、项片模具 、大项片模具
|
public string S_STATUS { get; set; } // 模具状态 出库、入库
|
|
[SugarColumn(IsIgnore = true)]
|
public List<MouldDetail> mouldDetails { get; set; } // 模具详情列表
|
|
}
|
}
|