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.
78 lines
2.0 KiB
C#
78 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 = "VGM_HEAD", DisableSyncStructure = true)]
|
|
public partial class VGMHEAD {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CARRIER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CORPID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DEPTGID { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? ETD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string FORWARDOP { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? FORWARDSTATUS { get; set; } = 0;
|
|
|
|
[JsonProperty]
|
|
public DateTime? FORWARDTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string MBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string MFNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(500)")]
|
|
public string OPREMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string OPTYPE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? RECEIPTSTATUS { get; set; } = 0;
|
|
|
|
[JsonProperty]
|
|
public DateTime? RECEIPTTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string SENDCUSTOMER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string SENDER { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? SENDTIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "timestamp")]
|
|
public byte[] TIMEMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string VESSEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string VOYNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|