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.
75 lines
2.2 KiB
C#
75 lines
2.2 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_AIRN_CARGO", DisableSyncStructure = true)]
|
|
public partial class OPAIRNCARGO {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? AMOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "AMOUNT_2", DbType = "numeric(18,2)")]
|
|
public decimal? AMOUNT2 { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? BOXCOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string BSNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CARGOGID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CARGONAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? CBM { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "CBM_REMARK", DbType = "varchar(200)")]
|
|
public string CBMREMARK { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "M_WEIGHT", DbType = "numeric(18,2)")]
|
|
public decimal? MWEIGHT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string PACKAGE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? PRICE { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "PRICE_2", DbType = "numeric(18,2)")]
|
|
public decimal? PRICE2 { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string PRICETYPE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? SEQUENCE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string TH1 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string TH2 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? WEIGHT { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "WEIGHT_2", DbType = "numeric(18,2)")]
|
|
public decimal? WEIGHT2 { get; set; } = 0M;
|
|
|
|
}
|
|
|
|
}
|