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.

48 lines
1.1 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 = "crm_seaeorderctn", DisableSyncStructure = true)]
public partial class CrmSeaeorderctn {
/// <summary>
/// 编号
/// </summary>
[JsonProperty, Column(Name = "CTN_ID", DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string CTNID { get; set; } = Guid.NewGuid().ToString().ToUpper();
/// <summary>
/// 表现形式
/// </summary>
[JsonProperty, Column(DbType = "varchar(10)")]
public string CTNALL { get; set; }
/// <summary>
/// 箱量
/// </summary>
[JsonProperty]
public int? CTNNUM { get; set; }
/// <summary>
/// 订舱编号
/// </summary>
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string ORDNO { get; set; }
/// <summary>
/// 备注
/// </summary>
[JsonProperty, Column(DbType = "varchar(50)")]
public string REMARK { get; set; }
}
}