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
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 = "op_ctn_outinmx", DisableSyncStructure = true)]
public partial class OpCtnOutinmx {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(Name = "cnsource", DbType = "varchar(36)")]
public string Cnsource { get; set; }
[JsonProperty, Column(Name = "cntage", DbType = "date")]
public DateTime? Cntage { get; set; }
[JsonProperty, Column(DbType = "varchar(12)")]
public string CNTRNO { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CNTTYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string Currency { get; set; }
[JsonProperty, Column(Name = "eCustName", DbType = "varchar(36)")]
public string ECustName { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string EPORT { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string FREEUSE { get; set; }
[JsonProperty, Column(IsIdentity = true)]
public int ID { get; set; }
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string LINKGID { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string ONEWAY { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string REMARKS { get; set; }
[JsonProperty, Column(Name = "sCustName", DbType = "varchar(20)")]
public string SCustName { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string SPORT { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string STATUS { get; set; }
[JsonProperty, Column(DbType = "numeric(18,2)")]
public decimal? UnitPrice { get; set; }
}
}