|
|
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_ctn_fendetail", DisableSyncStructure = true)]
|
|
|
public partial class OpCtnFendetail {
|
|
|
|
|
|
/// <summary>
|
|
|
/// 主键
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
|
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
|
|
/// <summary>
|
|
|
/// 批次号
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
|
public string COILNO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 颜色
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
|
public string COLOUR { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 分箱批次号
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
|
public string FXCOLNO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 分箱标识:0:未分箱;1:已分箱
|
|
|
/// </summary>
|
|
|
[JsonProperty]
|
|
|
public int? FXMARK { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 分箱编号
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
|
public string FXNO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 毛重
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "decimal(18,3)")]
|
|
|
public decimal? GWKGS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 导出标记(0:未导出;1:已导出)
|
|
|
/// </summary>
|
|
|
[JsonProperty]
|
|
|
public int? IOMARK { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 限重
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "decimal(18,3)")]
|
|
|
public decimal? LIKGS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 长度
|
|
|
/// </summary>
|
|
|
[JsonProperty]
|
|
|
public int? NLENGTH { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 净重
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "decimal(18,3)")]
|
|
|
public decimal? NWKGS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 操作时间
|
|
|
/// </summary>
|
|
|
[JsonProperty]
|
|
|
public DateTime? OPERTIME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 操作人
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
|
public string OPERUSER { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 规格
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
|
public string SIZE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 标签毛重
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "decimal(18,3)")]
|
|
|
public decimal? TGKGS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 箱型
|
|
|
/// </summary>
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
|
public string XMODEL { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|