using HH.WCS.JiaTong.models;
using SqlSugar;
using System;
using System.Collections.Generic;
namespace HH.WCS.JiaTong {
///
/// 容器表
///
[SugarTable("TN_Container")]
public class Container : BaseModel {
///
/// 容器编码
///
public string S_CODE { get; set; }
///
/// 容器类型
///
public string S_TYPE { get; set; }
public string S_SPEC { get; set; }
public float F_WEIGHT { get; set; }
public float F_LOAD_WEIGHT { get; set; }
public float F_MAX_WEIGHT { get; set; }
public int N_LENGTH { get; set; }
public int N_WIDTH { get; set; }
public int N_HEIGHT { get; set; }
public string C_IS_VIRTUAL { get; set; } = "N";
public int N_TYPE { get; set; }
public string C_ENABLE { get; set; } = "Y";
public string S_STATE_PRE { get; set; }
public int N_REVIEW_RESULT { get; set; }
public int N_DETAIL_COUNT { get; set; }
public int N_B_STATE { get; set; }
public string S_LOCK_OP_CODE { get; set; }
public string S_LOCK_STATE { get; set; }
public int N_LOCK_STATE { get; set; }
///
/// ����ʱ����
///
// public string S_SRC { get; internal set; }
// public string S_DEST { get; internal set; }
[SugarColumn(IsIgnore = true)]
[Navigate(NavigateType.OneToMany, nameof(CntrItemDetail.S_CNTR_CODE), nameof(S_CODE))]
public List CntrItemRels { get; set; }
}
}