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.
75 lines
2.2 KiB
C#
75 lines
2.2 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 = "OP_SEAE_ORDER_LETTER_YARD", DisableSyncStructure = true)]
|
|
public partial class OPSEAEORDERLETTERYARD {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ATTN { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "ATTN_MAIL", DbType = "varchar(64)")]
|
|
public string ATTNMAIL { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "ATTN_TEL", DbType = "varchar(50)")]
|
|
public string ATTNTEL { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? CLOSEDOCDATE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? CLOSINGDATE { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "CREATE_TIME", InsertValueSql = "getdate()")]
|
|
public DateTime CREATETIME { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "CREATE_USER", DbType = "varchar(61)")]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(2000)")]
|
|
public string DESCRIPTION { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string FROM { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "FROM_MAIL", DbType = "varchar(64)")]
|
|
public string FROMMAIL { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "FROM_TEL", DbType = "varchar(50)")]
|
|
public string FROMTEL { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "MODIFY_TIME")]
|
|
public DateTime? MODIFYTIME { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "MODIFY_USER", DbType = "varchar(61)")]
|
|
public string MODIFYUSER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ORDNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
|
public string TixiangUrl { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string TO { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "VGM_TIME")]
|
|
public DateTime? VGMTIME { get; set; }
|
|
|
|
}
|
|
|
|
}
|