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.

72 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 = "op_Bulk_detail", DisableSyncStructure = true)]
public partial class OpBulkDetail {
[JsonProperty, Column(DbType = "varchar(100)", IsPrimary = true, IsNullable = false)]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "numeric(27,0)", IsPrimary = true)]
public decimal SerialNo { get; set; } = 0M;
[JsonProperty]
public bool ACCSTATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string DrvCust { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string DrvName { get; set; }
[JsonProperty, Column(DbType = "varchar(19)")]
public string ExpDate { get; set; }
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
public string ISTRAIN { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? KGS { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? NETKGS { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? PKGKGS { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? PKGS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string POUNDNO { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string Remark { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string StationNo { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? TAREKGS { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? TRANSOT { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? TRANSTOTAL { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(100)")]
public string TruckNo { get; set; }
}
}