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; }
|
}
|
}
|