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.

78 lines
2.1 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 = "EIP_Tray", DisableSyncStructure = true)]
public partial class EIPTray {
/// <summary>
/// 储位
/// </summary>
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string AreaName { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CNTRNO { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CORPID { get; set; }
[JsonProperty]
public DateTime? ENTERDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string ENTEROPERATER { get; set; }
[JsonProperty, Column(DbType = "varchar(500)")]
public string GOODSNAMETT { get; set; }
[JsonProperty, Column(DbType = "char(1)")]
public string ISSCAN { get; set; } = "0";
[JsonProperty, Column(DbType = "char(1)")]
public string ISSTOCKUP { get; set; }
[JsonProperty, Column(DbType = "varchar(500)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string SEALNO { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string STOCKNO { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string STORAGENAME { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string TRAYNO { get; set; }
[JsonProperty]
public int? TTPKGS { get; set; } = 0;
[JsonProperty, Column(DbType = "decimal(18,2)")]
public decimal? TTWEIGHT { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(50)")]
public string WMSNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string WMSOUTNO { get; set; }
}
}