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 = "tMsTruckPlu", DisableSyncStructure = true)]
public partial class TMsTruckPlu {
[JsonProperty, Column(DbType = "varchar(20)", IsPrimary = true, IsNullable = false)]
public string PluCode { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string BarCode { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string CargoNo { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string Grade { get; set; }
[JsonProperty]
public DateTime? LrDate { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string PluBzq { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string PluBzQd { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string PluCcYq { get; set; }
[JsonProperty, Column(DbType = "varchar(40)")]
public string PluColor { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string PluCz { get; set; }
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
public string PluName { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string PluStatus { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string PluSyff { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string PluType { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string PluWx { get; set; }
[JsonProperty, Column(DbType = "numeric(19,4)")]
public decimal? Price { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(20)")]
public string Produce { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string ScEtpName { get; set; }
[JsonProperty, Column(DbType = "varchar(40)")]
public string Spec { get; set; }
[JsonProperty, Column(DbType = "varchar(6)")]
public string Unit { get; set; }
[JsonProperty, Column(DbType = "varchar(6)")]
public string UserCode { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string UserName { get; set; }
[JsonProperty, Column(DbType = "varchar(40)")]
public string Volume { get; set; }
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal? Weight { get; set; } = 0M;
}
}