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.

93 lines
2.6 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_express", DisableSyncStructure = true)]
public partial class OpExpress {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty]
public DateTime? BILLDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string BILLSTATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string BILLTYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; }
[JsonProperty]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CREATEUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string EXNO { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string EXPRESSCORP { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string GOODSNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string RECEIVE { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string RECEIVEADDR { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string RECEIVEATTN { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string RECEIVECITY { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string RECEIVECUST { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string RECEIVEPOST { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string RECEIVETEL { get; set; }
[JsonProperty, Column(DbType = "varchar(300)")]
public string REMARKS { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string SENDER { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string SENDERADDR { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string SENDERATTN { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string SENDERCITY { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string SENDERCUST { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string SENDERPOST { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string SENDERTEL { get; set; }
}
}