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.
72 lines
2.0 KiB
C#
72 lines
2.0 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 = "Import_approval", DisableSyncStructure = true)]
|
|
public partial class ImportApproval {
|
|
|
|
[JsonProperty, Column(Name = "id", IsPrimary = true, IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string AppName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string AppNo { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "Cargociq_id")]
|
|
public int? CargociqId { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "Cargoinfo_id")]
|
|
public int? CargoinfoId { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "company", DbType = "varchar(50)")]
|
|
public string Company { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string Countryid { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "depot", DbType = "varchar(50)")]
|
|
public string Depot { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "gid", DbType = "varchar(50)")]
|
|
public string Gid { get; set; }
|
|
|
|
[JsonProperty]
|
|
public byte? ISDELETED { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,6)")]
|
|
public decimal? JustWriteoffs { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty]
|
|
public byte? SLJG { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string SPECIFICATIONS { get; set; } = "";
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string SQDH { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "usedweight", DbType = "numeric(18,6)")]
|
|
public decimal? Usedweight { get; set; } = 0M;
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ValidDate { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "weight", DbType = "numeric(18,6)")]
|
|
public decimal? Weight { get; set; }
|
|
|
|
}
|
|
|
|
}
|