zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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; }
 
    }
}