using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HH.WCS.Mobox3.pinggao.models
|
{
|
|
|
[SugarTable("TN_Inbound_Details")]
|
|
public class TN_Center_Inbound_Detail : BaseModel
|
{
|
public string S_IO_NO { get; set; }
|
public string N_ROW_NO { get; set; }
|
public string S_ITEM_CODE { get; set; }
|
public int N_ITEM_STATE { get; set; }
|
public string S_ITEM_NAME { get; set; }
|
public string S_ITEM_STATE { get; set; }
|
public string S_BATCH_NO { get; set; } = "";
|
public string S_ITEM_SPEC { get; set; }
|
public string S_SERIAL_NO { get; set; } = "";
|
public string D_PRD_DATE { get; set; }
|
public string D_EXP_DATE { get; set; }
|
public string S_NOTE { get; set; }
|
public double F_QTY { get; set; }
|
public string S_UOM { get; set; } = "kg";
|
public double F_ACC_C_QTY { get; set; }
|
public double F_ACC_B_QTY { get; set; }
|
public int N_B_STATE { get; set; }
|
public string S_BS_NO { get; set; }
|
public string S_BS_TYPE { get; set; }
|
//public double F_NET_WEIGHT { get; set; }
|
//public double F_GROSS_WEIGHT { get; set; }
|
public string S_SUPPLIER_NO { get; set; }
|
//public string S_WU { get; set; }
|
///// <summary>
|
///// 来源单行号
|
///// </summary>
|
//public string N_BS_ROW_NO { get; set; }
|
/// <summary>
|
/// 货主
|
/// </summary>
|
public string S_OWNER { get; set; }
|
/// <summary>
|
/// ERP仓库
|
/// </summary>
|
public string S_ERP_WH_CODE { get; set; }
|
|
|
// 库存地点
|
|
public string S_KCDD { get; set; }
|
|
// 检验批编号
|
|
public string S_JYPBH { get; set; }
|
public string S_KJPZSSRQ { get; set; }
|
|
// 输入时间
|
|
public DateTime T_SRSJ { get; set; }
|
|
// 会计凭证日期
|
|
public string S_KJPZSRRQ { get; set; }
|
|
// 采购凭证号
|
|
public string S_CGPZH { get; set; }
|
|
// 采购凭证的项目编号
|
|
public string S_CGPZXMBH { get; set; }
|
|
// 借方/贷方标识
|
|
public string S_JDBS { get; set; }
|
|
// 参考凭证的凭证号
|
|
public string S_CKPZH { get; set; }
|
|
// 参考凭证会计年度
|
|
public string S_CKPZKJND { get; set; }
|
public string S_KJPZSRSJ { get; set; }
|
|
// 参考凭证项目
|
|
public string S_CKPZXM { get; set; }
|
|
// 冲销物料凭证编号
|
|
public string S_CXWLPZBH { get; set; }
|
public string S_CXPZNF { get; set; }
|
public string S_CXWLPZHXM { get; set; }
|
public string S_HWSJJYZT { get; set; }
|
public string S_GYSZHH { get; set; }
|
|
public string S_PH { get; set; }
|
public string S_TSKCBS { get; set; }
|
public string S_XSDDXMBH { get; set; }
|
public string S_DDH { get; set; }
|
public string S_WBS { get; set; }
|
public string S_XSDD { get; set; }
|
|
}
|
}
|