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.
69 lines
1.7 KiB
C#
69 lines
1.7 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 = "subcomp_seae_def", DisableSyncStructure = true)]
|
|
public partial class SubcompSeaeDef {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string AFRAGENTID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string AFRCARRIERID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string AFRETDTIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 付费方式
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string BLFRT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分公司代码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string CORPID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? ISADVANCE { get; set; } = false;
|
|
|
|
[JsonProperty]
|
|
public bool? ISCGOL { get; set; } = false;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string KGS { get; set; } = "";
|
|
|
|
/// <summary>
|
|
/// 装货港
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string PORTLOAD { get; set; }
|
|
|
|
/// <summary>
|
|
/// 装货港代码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string PORTLOADID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 运输条款
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string SERVICE { get; set; }
|
|
|
|
}
|
|
|
|
}
|