schangxiang@126.com
2024-04-23 f47411fb53aeee0c7bd514cbc841f9030349f448
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
using Admin.NET.Core.Util.LowCode.Dto;
using System;
 
namespace Admin.NET.Application
{
    /// <summary>
    /// 客商信息表输出参数
    /// </summary>
    public class WmsMerchantinfoDto
    {
        /// <summary>
        /// 客商编号
        /// </summary>
        public string MerchantNo { get; set; }
        
        /// <summary>
        /// 客商名称
        /// </summary>
        public string MerchantName { get; set; }
        
        /// <summary>
        /// 客商分类
        /// </summary>
        public Admin.NET.Core.MerchantType MerchantType { get; set; }
        
        /// <summary>
        /// 客商简称
        /// </summary>
        public string MerchantShort { get; set; }
        
        /// <summary>
        /// 客商等级
        /// </summary>
        public Admin.NET.Core.MerchantGrade MerchantGrade { get; set; }
        
        /// <summary>
        /// 客商属性
        /// </summary>
        public string MerchantAttribute { get; set; }
        
        /// <summary>
        /// 客商行业
        /// </summary>
        public string MerchantTmt { get; set; }
        
        /// <summary>
        /// 客商联系人
        /// </summary>
        public string MerchantContact { get; set; }
        
        /// <summary>
        /// 客商电话
        /// </summary>
        public string MerchantPhone { get; set; }
        
        /// <summary>
        /// 客商传真
        /// </summary>
        public string MerchantFax { get; set; }
        
        /// <summary>
        /// 客商邮箱
        /// </summary>
        public string MerchantEmail { get; set; }
        
        /// <summary>
        /// 客商地址
        /// </summary>
        public string MerchantAddress { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
        /// <summary>
        /// 签核状态
        /// </summary>
        public Admin.NET.Core.IssueState IssueState { get; set; }
        
    }
}