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.
78 lines
2.2 KiB
C#
78 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_px", DisableSyncStructure = true)]
|
|
public partial class OpSeaePx {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
[JsonProperty, Column(DbType = "varchar(5000)")]
|
|
public string BeiZhu { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string CangKuMingCheng { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string ChuanMing { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string Corpid { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string GuanQuDaiMa { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string HangCi { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "decimal(10,4)")]
|
|
public decimal? JianShu { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string LuRuRen { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string LuRuRenId { get; set; }
|
|
|
|
[JsonProperty, Column(InsertValueSql = "getdate()")]
|
|
public DateTime? LuRuRiQi { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "decimal(10,4)")]
|
|
public decimal? MaoZhong { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string MBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string PXCOMNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string ReceiptState { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? ReceiptTim { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? SendTim { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string ShenBaoZhuangTai { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "decimal(10,4)")]
|
|
public decimal TiJi { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string YeWuLeiXing { get; set; }
|
|
|
|
}
|
|
|
|
}
|