仓库管理:checklog
This commit is contained in:
46
ZR.Model/MES/wms/Dto/WmCheckLogDto.cs
Normal file
46
ZR.Model/MES/wms/Dto/WmCheckLogDto.cs
Normal file
@@ -0,0 +1,46 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 盘点记录查询对象
|
||||
/// </summary>
|
||||
public class WmCheckLogQueryDto : PagerInfo
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 盘点记录输入输出对象
|
||||
/// </summary>
|
||||
public class WmCheckLogDto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
|
||||
public string FkGoodsNowProduction { get; set; }
|
||||
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
public string PackageCodeClient { get; set; }
|
||||
|
||||
public decimal OldValue { get; set; }
|
||||
|
||||
public decimal NewValue { get; set; }
|
||||
|
||||
public int? Type { get; set; }
|
||||
|
||||
public decimal Value { get; set; }
|
||||
|
||||
public string Remark { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
87
ZR.Model/MES/wms/WmCheckLog.cs
Normal file
87
ZR.Model/MES/wms/WmCheckLog.cs
Normal file
@@ -0,0 +1,87 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using SqlSugar;
|
||||
namespace ZR.Model.MES.wms
|
||||
{
|
||||
/// <summary>
|
||||
/// 盘点记录
|
||||
/// </summary>
|
||||
[SugarTable("wm_check_log")]
|
||||
public class WmCheckLog
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
public int? Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 成品库主键id
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_goods_now_production")]
|
||||
public string FkGoodsNowProduction { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 零件号
|
||||
/// </summary>
|
||||
public string Partnumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 批次号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "package_code_client")]
|
||||
public string PackageCodeClient { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 原数值
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "old_value")]
|
||||
public decimal OldValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 修改后
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "new_value")]
|
||||
public decimal NewValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 修改类型;1-添加2-减少
|
||||
/// </summary>
|
||||
public int? Type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 修改数值
|
||||
/// </summary>
|
||||
public decimal Value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "cREATED_BY")]
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "cREATED_TIME")]
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_BY")]
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user