using HH.WMS.Entitys.Common;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HH.WMS.Entitys.Autobom
|
{
|
/// <summary>
|
/// 字典实体
|
/// </summary>
|
public class TN_AB_B_DICTEntity
|
{
|
public string CN_S_GUID { get; set; }
|
public string CN_S_CODE { get; set; }
|
public string CN_S_PARENT_GUID { get; set; }
|
public string CN_S_PARENT_CODE { get; set; }
|
public string CN_S_NAME { get; set; }
|
public int CN_N_TYPE { get; set; }
|
public string CN_N_ORDER { get; set; }
|
public string CN_C_IS_DEFAULT { get; set; }
|
public string CN_C_IS_ENABLE { get; set; }
|
public int CN_N_CHILD_QTY { get; set; }
|
public int CN_N_DEPTH { get; set; }
|
public string CN_S_FROM { get; set; }
|
public int CN_N_GROUP { get; set; }
|
public string CN_S_CREATOR { get; set; }
|
public string CN_S_CREATOR_NAME { get; set; }
|
public DateTime CN_T_CREATE { get; set; }
|
public string CN_S_MODIFY_BY { get; set; }
|
public string CN_S_MODIFY_NAME { get; set; }
|
public DateTime CN_T_MODIFY { get; set; }
|
|
}
|
}
|