using Admin.NET.Core;
|
|
/*
|
* @author : 刘文奇
|
* @date : 2024/5/26下午8:29:46
|
* @desc : 报检单操作明细
|
*/
|
namespace Admin.NET.Application.Entity
|
{
|
/// <summary>
|
/// 报检单操作明细
|
/// </summary>
|
[SugarTable("wms_order_qc_trans", "报检单操作明细")]
|
public class WmsOrderQcTrans : EntityBase
|
{
|
|
|
/// <summary>
|
/// 报检单明细ID
|
/// </summary>
|
[Required]
|
|
[SugarColumn(ColumnName = "QCOrderDetailsId", ColumnDescription = "报检单明细ID")]
|
public long QCOrderDetailsId { get; set; }
|
|
|
/// <summary>
|
/// 报检单单号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "QCOrderNo", ColumnDescription = "报检单单号", Length = 50)]
|
|
public string QCOrderNo { get; set; }
|
|
|
/// <summary>
|
/// 物料编号
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "MaterialCode", ColumnDescription = "物料编号", Length = 50)]
|
|
public string MaterialCode { get; set; }
|
|
|
/// <summary>
|
/// 物料名称
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "MaterialName", ColumnDescription = "物料名称", Length = 50)]
|
|
public string MaterialName { get; set; }
|
|
|
/// <summary>
|
/// 合格数量
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "PassQuantity", ColumnDescription = "合格数量", Length = 10, DecimalDigits = 3)]
|
public decimal PassQuantity { get; set; }
|
|
|
/// <summary>
|
/// 不合格数量
|
/// </summary>
|
[Required]
|
[SugarColumn(ColumnName = "RejectQuantity", ColumnDescription = "不合格数量", Length = 10, DecimalDigits = 3)]
|
public decimal RejectQuantity { get; set; }
|
|
|
/// <summary>
|
/// 单位
|
/// </summary>
|
[SugarColumn(ColumnName = "Unit", ColumnDescription = "单位", Length = 50)]
|
|
public string? Unit { get; set; }
|
|
|
/// <summary>
|
/// 检验员
|
/// </summary>
|
[SugarColumn(ColumnName = "QCUser", ColumnDescription = "检验员", Length = 50)]
|
|
public string? QCUser { get; set; }
|
|
|
/// <summary>
|
/// 检验时间
|
/// </summary>
|
|
[SugarColumn(ColumnName = "QCTime", ColumnDescription = "检验时间")]
|
public DateTime? QCTime { get; set; }
|
|
|
/// <summary>
|
/// 跟踪码
|
/// </summary>
|
[SugarColumn(ColumnName = "SNCode", ColumnDescription = "跟踪码", Length = 255)]
|
|
public string? SNCode { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
}
|