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.
111 lines
2.4 KiB
C#
111 lines
2.4 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 {
|
|
|
|
/// <summary>
|
|
/// 放箱打印信息
|
|
/// </summary>
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "cma_ctrn_print", DisableSyncStructure = true)]
|
|
public partial class CmaCtrnPrint {
|
|
|
|
/// <summary>
|
|
/// GID
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 真实条码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string BarCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string CtrnNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string CtrnType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原始数据ID
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string DataId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 隐藏条码
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string HideBarCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 打印次数
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public int Num { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 放箱记录ID
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string RecordId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 申请时间
|
|
/// </summary>
|
|
[JsonProperty]
|
|
public DateTime? ReqTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 申请人
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string ReqUser { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 温度
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string Temperature { get; set; }
|
|
|
|
/// <summary>
|
|
/// 小票类型
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 场站
|
|
/// </summary>
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string Yard { get; set; }
|
|
|
|
}
|
|
|
|
}
|