using HH.WCS.JiaTong.models;
using SqlSugar;
using System;
namespace HH.WCS.JiaTong
{
///
/// �������ϰ�
///
//CntrItemRel
[SugarTable("TN_CG_Detail")]
public class CntrItemDetail : BaseModel
{
public string S_CG_ID { get; set; }
public string S_SERIAL_NO { get; set; }
///
/// ���ϵȼ�
///
public string LEV { get; set; }
///
/// ����/������
///
public string TyreType { get; set; }
///
/// �ջ�����
///
public string ReceiveLot { get; set; }
///
/// �ӿ�
///
public string Subpool { get; set; }
///
/// ����ʱ��
///
public string D_EXP_DATE { get; set; }
///
/// ����ʱ��
///
public string D_PRD_DATE { get; set; }
///
/// ��Ӧ��
///
public string S_SUPPLIER_NO { get; set; }
///
/// GTWMS�ڲ�����
///
public string WmsLot { 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_ITEM_STATE { get; set; } = "�ϸ�";
///
/// 1���ϸ� 2�����ϸ�
///
public int N_ITEM_STATE { get; set; }
public string S_BATCH_NO { get; set; }
public string S_END_USER { get; set; } = "";
///
/// ��������
///
public string S_OWNER { get; set; }
public string S_PACK_TYPE { get; set; }
public float F_PACK_QTY { get; set; }
public float F_QTY { get; set; }
public string S_UOM { get; set; } = "kg";
///
/// ���̱���
///
public string S_CNTR_CODE { get; set; }
public string S_BS_TYPE { get; set; } = "";
public string S_BS_NO { get; set; } = "";
public string S_ITEM_ROUTE { get; set; } = "";
public string F_NET_WEIGHT { get; set; } = "1";
///
/// ����
///
public string F_WEIGHT { get; set; }
public float F_GROSS_WEIGHT { get; set; }
public string S_WU { get; set; } = "kg";
///
/// ������,������
///
public float F_ALLOC_QTY { get; set; }
public string C_ITEM_MERGE { get; set; } = "N";
public string S_PUTAWAY_NO { get; set; }
///
/// 每袋重量
///
public string F_WEIGHT1 { get; set; }
///
/// 粉料数量
///
public string F_QTY1 { get; set; }
///
/// ����ӳ��
///
[SugarColumn(IsIgnore = true)]
[Navigate(NavigateType.OneToOne, nameof(S_CNTR_CODE), nameof(Container.S_CODE))]
public Container Cntr { get; set; }
}
}