You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
2.8 KiB
C#
99 lines
2.8 KiB
C#
using FreeSql.DatabaseModel;using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using FreeSql.DataAnnotations;
|
|
|
|
namespace djy.Model {
|
|
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "code_FtpSet", DisableSyncStructure = true)]
|
|
public partial class CodeFtpSet {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string CARRIERID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string CompId { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CompName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string CONSIGNEETEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CORPID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string EDINAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string FOLDERNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string ISUSETEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string NOTIFYPARTYTEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string PASSWORD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string RECEIVECODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string RECEIVEDEPT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string RECEIVEEMAIL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string RECEIVEOP { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string RECEIVESALE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string RECEIVESIEMAIL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string SENDATTN { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string SENDCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string SENDCOMPANYCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string SENDEMAIL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string SENDNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string SENDSUBCOMPANYCODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string SENDTEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string SERVERIP { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string SHIPPERTEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string USERNAME { get; set; }
|
|
|
|
}
|
|
|
|
}
|