1
pulg
2025-05-14 5a640911f7e7ef3a003775993f077e1a0e9ac130
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
using HH.WCS.Hexafluo.util;
using HH.WCS.Hexafluo.wms;
 
namespace HH.WCS.SJML.Entitys
{
    [ST("供应商表")]
    public class TN_SupplierEntitys : BaseModel
    {
        /// <summary>
        /// 供应商编号
        /// </summary>
        public string S_SUPPLIER_NO { get; set; }
 
        /// <summary>
        /// 供应商类型
        /// </summary>
        public string S_SUPPLIER_TYPE { get; set; }
        /// <summary>
        /// 供应商等级
        /// </summary>
        public string S_SUPPLIER_LEVEL { get; set; }
        /// <summary>
        /// 供应商全称
        /// </summary>
        public string S_SUPPLIER { get; set; }
 
    }
}