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.
BaoGuanSYHT/djy.Model/db/OpSubSeaorderArrivalfee.cs

54 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_sub_seaorder_arrivalfee", DisableSyncStructure = true)]
public partial class OpSubSeaorderArrivalfee {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNTJPY { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? AMOUNTUSD { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string CURRENCY { get; set; }
[JsonProperty, Column(DbType = "numeric(18,5)")]
public decimal? EXCHANGERATE { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string FEENAME { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string ORDNO { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? QUANTITY { get; set; }
[JsonProperty, Column(DbType = "varchar(1024)")]
public string REMARK { get; set; }
[JsonProperty]
public int? SORT { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string UNIT { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? UNITPRICE { get; set; }
}
}