zhanghonglin
3 小时以前 1e6a3ce80c38124fe8750f59956528204e696d4e
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Magicodes.ExporterAndImporter.Core;
using SqlSugar;
using WIDESEAWCS_Model.Models.TaskInfo;
 
namespace WIDESEAWCS_Model.Models.ERP
{
    [SugarTable(nameof(Dt_ERP), "ERP")]
    public class Dt_ERP
    {
        /// <summary>
        /// 主键
        /// </summary>
        [ImporterHeader(Name = "主键")]
        [ExporterHeader(DisplayName = "主键")]
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// AppKey
        /// </summary>
        [ImporterHeader(Name = "AppKey")]
        [ExporterHeader(DisplayName = "AppKey")]
        [SugarColumn(IsNullable = true, ColumnDescription = "AppKey")]
        public string AppKey { get; set; }
 
        /// <summary>
        /// AppSecret
        /// </summary>
        [ImporterHeader(Name = "AppSecret")]
        [ExporterHeader(DisplayName = "AppSecret")]
        [SugarColumn(IsNullable = true, ColumnDescription = "AppSecret")]
        public string AppSecret { get; set; }
 
        /// <summary>
        /// appTicket
        /// </summary>
        [ImporterHeader(Name = "appTicket")]
        [ExporterHeader(DisplayName = "appTicket")]
        [SugarColumn(IsNullable = true, ColumnDescription = "appTicket")]
        public string appTicket { get; set; }
 
        /// <summary>
        /// certificate
        /// </summary>
        [ImporterHeader(Name = "certificate")]
        [ExporterHeader(DisplayName = "certificate")]
        [SugarColumn(IsNullable = true, ColumnDescription = "certificate")]
        public string certificate { get; set; }
 
        /// <summary>
        /// Token
        /// </summary>
        [ImporterHeader(Name = "Token")]
        [ExporterHeader(DisplayName = "Token")]
        [SugarColumn(IsNullable = true, ColumnDescription = "Token")]
        public string Token { get; set; }
    }
}