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.
111 lines
3.0 KiB
C#
111 lines
3.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 = "msk_subscribe_booking", DisableSyncStructure = true)]
|
|
public partial class MskSubscribeBooking {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string BookingCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(64)")]
|
|
public string BookingNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string BoxType { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string Carrier { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(128)")]
|
|
public string CBNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CBType { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string CompId { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string CompName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string ContactNO { get; set; }
|
|
|
|
[JsonProperty, Column(InsertValueSql = "getdate()")]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string Currency { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(128)")]
|
|
public string FromCity { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? ModifyTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string OFCurrency { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "decimal(18,0)")]
|
|
public decimal? OFTotal { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "decimal(16,2)")]
|
|
public decimal? Price { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string PriceId { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(300)")]
|
|
public string ProductName { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? Quantity { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string SerialNO { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string Status { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(128)")]
|
|
public string ToCity { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? TXRQ { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string UserId { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string UserName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(128)")]
|
|
public string VesselName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(128)")]
|
|
public string VoyageNumber { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string Yard { get; set; }
|
|
|
|
}
|
|
|
|
}
|