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
{
///
/// 主键
///
[ImporterHeader(Name = "主键")]
[ExporterHeader(DisplayName = "主键")]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id { get; set; }
///
/// AppKey
///
[ImporterHeader(Name = "AppKey")]
[ExporterHeader(DisplayName = "AppKey")]
[SugarColumn(IsNullable = true, ColumnDescription = "AppKey")]
public string AppKey { get; set; }
///
/// AppSecret
///
[ImporterHeader(Name = "AppSecret")]
[ExporterHeader(DisplayName = "AppSecret")]
[SugarColumn(IsNullable = true, ColumnDescription = "AppSecret")]
public string AppSecret { get; set; }
///
/// appTicket
///
[ImporterHeader(Name = "appTicket")]
[ExporterHeader(DisplayName = "appTicket")]
[SugarColumn(IsNullable = true, ColumnDescription = "appTicket")]
public string appTicket { get; set; }
///
/// certificate
///
[ImporterHeader(Name = "certificate")]
[ExporterHeader(DisplayName = "certificate")]
[SugarColumn(IsNullable = true, ColumnDescription = "certificate")]
public string certificate { get; set; }
///
/// Token
///
[ImporterHeader(Name = "Token")]
[ExporterHeader(DisplayName = "Token")]
[SugarColumn(IsNullable = true, ColumnDescription = "Token")]
public string Token { get; set; }
}
}