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.
60 lines
1.5 KiB
C#
60 lines
1.5 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_letter_change", DisableSyncStructure = true)]
|
|
public partial class OpLetterChange {
|
|
|
|
[JsonProperty, Column(Name = "LE_ID", DbType = "varchar(100)", IsPrimary = true, IsNullable = false)]
|
|
public string LEID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CNTR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
|
public DateTime? ETD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string MBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string PKC { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string PORTDISCHARGE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更改项目
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(600)")]
|
|
public string ProName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 现内容
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(600)")]
|
|
public string ProNew { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原内容
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(600)")]
|
|
public string ProOld { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(600)")]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string VESSELVOYNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|