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.
81 lines
2.6 KiB
C#
81 lines
2.6 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 = "OpAirn_Freight_Detail", DisableSyncStructure = true)]
|
|
public partial class OpAirnFreightDetail {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CARGOGID { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DESCRIPTION { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? MINFEE { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? MINWEIGHT { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(Name = "PLAN_GID", DbType = "varchar(50)")]
|
|
public string PLANGID { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string PORTDISCHARGEID { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string PORTLOADID { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(400)")]
|
|
public string REMARK { get; set; } = "";
|
|
|
|
[JsonProperty, Column(Name = "REMARK_2", DbType = "varchar(400)")]
|
|
public string REMARK2 { get; set; } = "";
|
|
|
|
[JsonProperty, Column(Name = "REMARK_3", DbType = "varchar(400)")]
|
|
public string REMARK3 { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string VESSEL { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(6)")]
|
|
public string VESSELHEAD { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "W_10", DbType = "numeric(18,2)")]
|
|
public decimal? W10 { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(Name = "W_100", DbType = "numeric(18,2)")]
|
|
public decimal? W100 { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(Name = "W_1000", DbType = "numeric(18,2)")]
|
|
public decimal? W1000 { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(Name = "W_300", DbType = "numeric(18,2)")]
|
|
public decimal? W300 { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(Name = "W_45", DbType = "numeric(18,2)")]
|
|
public decimal? W45 { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(Name = "W_5", DbType = "numeric(18,2)")]
|
|
public decimal? W5 { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(Name = "W_500", DbType = "numeric(18,2)")]
|
|
public decimal? W500 { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(Name = "W_N", DbType = "numeric(18,2)")]
|
|
public decimal? WN { get; set; } = 0M;
|
|
|
|
}
|
|
|
|
}
|