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 = "V_OP_BULK_KC", DisableSyncStructure = true)] public partial class VOPBULKKC { [JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)] public string BSNO { get; set; } [JsonProperty, Column(DbType = "varchar(8)", IsNullable = false)] public string BSTYPE { get; set; } [JsonProperty, Column(DbType = "varchar(30)")] public string CUSTNO { get; set; } [JsonProperty, Column(DbType = "varchar(19)")] public string ExpDate { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? KGS { get; set; } [JsonProperty, Column(DbType = "numeric(18,4)")] public decimal? PKGS { get; set; } [JsonProperty, Column(DbType = "varchar(60)")] public string StationNo { get; set; } } }