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.
66 lines
1.8 KiB
C#
66 lines
1.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(DisableSyncStructure = true)]
|
|
public partial class YZCarrierData {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string ChuanMing { get; set; }
|
|
|
|
[JsonProperty, Column(InsertValueSql = "getdate()")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CUSTNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string DiDian { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string DongTai { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string DongTaiShiJian { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string HangCi { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? ISHPPEN { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string MBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
|
public string Remarks { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string SN { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "status", DbType = "varchar(200)")]
|
|
public string Status { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string Timezone { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string XiangHao { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string YARDNAME { get; set; }
|
|
|
|
}
|
|
|
|
}
|