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.

90 lines
2.5 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_hs", DisableSyncStructure = true)]
public partial class OpSeaeHs {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "varchar(8)")]
public string CARGOCODE { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? CARGOGROSSWT1 { get; set; } = 0M;
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? CARGOGROSSWT2 { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(1)")]
public string CARGOID { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? CARGOMEASUREMENT1 { get; set; } = 0M;
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? CARGOMEASUREMENT2 { get; set; } = 0M;
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? CBM { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(30)")]
public string CNTRNO { get; set; }
[JsonProperty, Column(DbType = "varchar(15)")]
public string CONSIGNMENTNO { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string COUNTRYCODE { get; set; }
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CREATEUSER { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? KGS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string KINDPKGS1 { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string KINDPKGS2 { get; set; }
[JsonProperty]
public DateTime? MODIFIEDTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string MODIFIEDUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(35)")]
public string NOPKGS1 { get; set; }
[JsonProperty, Column(DbType = "varchar(35)")]
public string NOPKGS2 { get; set; }
[JsonProperty]
public int? PKGS1 { get; set; } = 0;
[JsonProperty]
public int? PKGS2 { get; set; } = 0;
[JsonProperty, Column(DbType = "varchar(1024)")]
public string REMARK { get; set; }
}
}