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.

132 lines
3.6 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_bulk", DisableSyncStructure = true)]
public partial class OpBulk {
[JsonProperty, Column(DbType = "varchar(100)", IsPrimary = true, IsNullable = false)]
public string BSNO { get; set; } = "*";
[JsonProperty, Column(DbType = "varchar(7)", IsNullable = false)]
public string ACCDATE { get; set; }
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime BSDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string BSSOURCE { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string BSSOURCEDETAIL { get; set; }
[JsonProperty]
public bool BSSTATUS { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? CBM { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string CUSTNO { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string ETA { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string ETD { get; set; }
[JsonProperty]
public bool FEESTATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string GOODCODE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string GOODSNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string INPUTBY { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string ISPRINTPR { get; set; }
[JsonProperty]
public bool? ISVOU { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? KGS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string KINDPKGS { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string LASTETD { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string OP { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string OPDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string OPSTATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string ORDERNO { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? OVERKGS { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? OVERPKGS { get; set; }
[JsonProperty]
public int? PKGS { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string PORTDISCHARGE { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string PORTLOAD { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string SALE { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string SALEDEPT { get; set; }
[JsonProperty]
public DateTime? STLDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string STLNAME { get; set; }
[JsonProperty, Column(DbType = "numeric(27,0)")]
public decimal? TimeMark { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(12)")]
public string TRANSTYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(12)")]
public string VOUNO { get; set; }
}
}