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.

36 lines
1.1 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_seae_edi_mainstatus", DisableSyncStructure = true)]
public partial class OpSeaeEdiMainstatus {
[JsonProperty, Column(Name = "gid", IsPrimary = true)]
public Guid Gid { get; set; }
[JsonProperty, Column(Name = "customs_code", DbType = "varchar(100)")]
public string CustomsCode { get; set; }
[JsonProperty, Column(Name = "mblno", DbType = "varchar(50)")]
public string Mblno { get; set; }
[JsonProperty, Column(Name = "means_transport", DbType = "varchar(100)")]
public string MeansTransport { get; set; }
[JsonProperty, Column(Name = "mfno", DbType = "varchar(50)", IsNullable = false)]
public string Mfno { get; set; }
[JsonProperty, Column(Name = "voyage_number", DbType = "varchar(100)")]
public string VoyageNumber { get; set; }
}
}