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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
using Furion.DatabaseAccessor;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
 
/*
 * @author : http://www.chiner.com.cn
 * @date : 2023-8-17
 * @desc : 客商信息表
 */
namespace Admin.NET.Core
{
    /// <summary>
    /// 客商信息表
    /// </summary>
    [Table("wms_merchantinfo")]
    [Comment("客商信息表")]
    public class WmsMerchantinfo : DEntityBase
    {
        /// <summary>
        /// 客商编号
        /// </summary>
        [Comment("客商编号")]
        [MaxLength(50)]
        public string MerchantNo { get; set; }
 
        /// <summary>
        /// 客商名称
        /// </summary>
        [Comment("客商名称")]
        [MaxLength(50)]
        public string MerchantName { get; set; }
 
        /// <summary>
        /// 客商分类
        /// </summary>
        [Comment("客商分类")]
        public MerchantType MerchantType { get; set; }
 
        /// <summary>
        /// 客商简称
        /// </summary>
        [Comment("客商简称")]
        [MaxLength(50)]
        public string MerchantShort { get; set; }
 
        /// <summary>
        /// 客商等级
        /// </summary>
        [Comment("客商等级")]
        public MerchantGrade MerchantGrade { get; set; }
 
        /// <summary>
        /// 客商属性
        /// </summary>
        [Comment("客商属性")]
        [MaxLength(50)]
        public string MerchantAttribute { get; set; }
 
        /// <summary>
        /// 客商行业
        /// </summary>
        [Comment("客商行业")]
        [MaxLength(50)]
        public string MerchantTmt { get; set; }
 
        /// <summary>
        /// 客商联系人
        /// </summary>
        [Comment("客商联系人")]
        [MaxLength(50)]
        public string MerchantContact { get; set; }
 
        /// <summary>
        /// 客商电话
        /// </summary>
        [Comment("客商电话")]
        [MaxLength(50)]
        public string MerchantPhone { get; set; }
 
        /// <summary>
        /// 客商传真
        /// </summary>
        [Comment("客商传真")]
        [MaxLength(50)]
        public string MerchantFax { get; set; }
 
        /// <summary>
        /// 客商邮箱
        /// </summary>
        [Comment("客商邮箱")]
        [MaxLength(50)]
        public string MerchantEmail { get; set; }
 
        /// <summary>
        /// 客商地址
        /// </summary>
        [Comment("客商地址")]
        [MaxLength(50)]
        public string MerchantAddress { get; set; }
    }
}