首检添加数据看板
This commit is contained in:
@@ -1,8 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using SqlSugar;
|
||||
namespace ZR.Model.MES.wms
|
||||
namespace ZR.Model.MES.wms
|
||||
{
|
||||
/// <summary>
|
||||
/// 入库日志(U8上传)
|
||||
@@ -13,52 +9,52 @@ namespace ZR.Model.MES.wms
|
||||
/// <summary>
|
||||
/// 主键(雪花生产)
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName="id" )]
|
||||
public string Id { get; set; }
|
||||
[SugarColumn(ColumnName = "id")]
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// u8库存编码
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName="u8_inventory_code" )]
|
||||
public string U8InventoryCode { get; set; }
|
||||
[SugarColumn(ColumnName = "u8_inventory_code")]
|
||||
public string U8InventoryCode { get; set; }
|
||||
/// <summary>
|
||||
/// 仓库编号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName="wm_info_id" )]
|
||||
public string WmInfoId { get; set; }
|
||||
[SugarColumn(ColumnName = "wm_info_id")]
|
||||
public string WmInfoId { get; set; }
|
||||
/// <summary>
|
||||
/// mes内码
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName="package_code" )]
|
||||
public string PackageCode { get; set; }
|
||||
[SugarColumn(ColumnName = "package_code")]
|
||||
public string PackageCode { get; set; }
|
||||
/// <summary>
|
||||
/// 批次号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName="code" )]
|
||||
public string Code { get; set; }
|
||||
[SugarColumn(ColumnName = "code")]
|
||||
public string Code { get; set; }
|
||||
/// <summary>
|
||||
/// 数量
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName="number" )]
|
||||
public string Number { get; set; }
|
||||
[SugarColumn(ColumnName = "number")]
|
||||
public string Number { get; set; }
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName="CREATED_BY" )]
|
||||
public string CreatedBy { get; set; }
|
||||
[SugarColumn(ColumnName = "CREATED_BY")]
|
||||
public string CreatedBy { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName="CREATED_TIME" )]
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
[SugarColumn(ColumnName = "CREATED_TIME")]
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
/// <summary>
|
||||
/// 更新人
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName="UPDATED_BY" )]
|
||||
public string UpdatedBy { get; set; }
|
||||
[SugarColumn(ColumnName = "UPDATED_BY")]
|
||||
public string UpdatedBy { get; set; }
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName="UPDATED_TIME" )]
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
[SugarColumn(ColumnName = "UPDATED_TIME")]
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user