using HH.WCS.Mobox3.RiDong.util;
using SqlSugar;
namespace HH.WCS.Mobox3.RiDong.models;
///
/// 配盘单明细
///
[SugarTable("TN_Distribution_CNTR_Detail")]
public class TN_Distribution_CNTR_Detail : BaseModel
{
///
/// 配盘单号
///
public string S_DC_NO { get; set; }
///
/// 容器编码
///
public string S_CNTR_CODE { get; set; }
public string S_CELL_NO { get; set; }
public string S_ITEM_CODE { get; set; }
public string S_ITEM_NAME { get; set; }
public string S_ITEM_SPEC { get; set; }
public string S_BATCH_NO { get; set; }
public int N_ITEM_STATE { get; set; }
public string S_ITEM_STATE { get; set; }
public string S_SERIAL_NO { get; set; }
public float F_QTY { get; set; }
public string S_UOM { get; set; }
public string S_STATE_PRE { get; set; }
public int N_REVIEW_RESULT { get; set; }
public string S_REVIEW_COMMENT { get; set; }
public string S_DEPART_ID { get; set; }
public string S_DEPART_NAME { get; set; }
public string S_MODIFIER_ID { get; set; }
public string S_MODIFIER_NAME { get; set; }
public int N_CREATEMETHOD { get; set; }
public string G_SOURCE_OBJ { get; set; }
public string S_END_USER { get; set; }
public string S_OWNER { get; set; }
public string S_SUPPLIER_NO { get; set; }
public string S_BS_TYPE { get; set; }
// 来源单号 发货单号
public string S_BS_NO { get; set; }
public int N_BS_ROW_NO { get; set; }
public string G_CG_DETAIL_ID { get; set; }
public string S_WH_CODE { get; set; } = Settings.WHCode;
public string S_AREA_CODE { get; set; }
public float F_ACC_P_QTY { get; set; }
public string S_EXT_ATTR1 { get; set; }
///
/// 是否完成 0:未完成 ,1 :已完成
///
public string IS_SORTING { get; set; }
}