Files
WMS-Api/src/WMS.Web.Core/Dto/TakeStock/TakeStockQueryInfoResponse.cs
2025-07-16 17:57:15 +08:00

108 lines
3.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Npoi.Mapper.Attributes;
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.TakeStock
{
/// <summary>
/// 盘点单列表
/// </summary>
public class TakeStockQueryInfoResponse
{
/// <summary>
/// 单据头Id
/// </summary>
public int Id { get; set; }
/// <summary>
/// 单据编号
/// </summary>
[Column("盘盈亏单号")]
public string BillNo { get; set; }
/// <summary>
/// 盘点日期
/// </summary>
[Column("盘点日期")]
public string Date { get; set; }
/// <summary>
/// 盘点人员
/// </summary>
[Column("盘点人")]
public string Creator { get; set; }
/// <summary>
/// 金蝶同步成功或者失败 null 就是未同步
/// </summary>
[Column("金蝶同步状态")]
public string SuccessSync { get; set; }
/// <summary>
/// 单位
/// </summary>
[Column("单位")]
public string Unit { get; set; }
/// <summary>
/// 仓库
/// </summary>
[Column("仓库")]
public string Stock { get; set; }
/// <summary>
/// 仓位
/// </summary>
[Column("仓位")]
public string SubStock { get; set; }
///// <summary>
///// 箱号
///// </summary>
//public string BoxBillNo { get; set; }
/// <summary>
/// 子仓库
/// </summary>
[Column("子仓库")]
public string Erp_SubStock { get; set; }
/// <summary>
/// 物料名称
/// </summary>
[Column("物料名称")]
public string MaterialName { get; set; }
/// <summary>
/// 物料编码
/// </summary>
[Column("物料编码")]
public string MaterialNumber { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
[Column("规格型号")]
public string Specifications { get; set; }
/// <summary>
/// 系统库存
/// </summary>
[Column("系统库存")]
public decimal BeforeQty { get; set; }
/// <summary>
/// 盘点数量
/// </summary>
[Column("盘点数量")]
public decimal AfterQty { get; set; }
/// <summary>
/// 盈亏数量
/// </summary>
[Column("盈亏数量")]
public decimal FinalQty { get; set; }
/// <summary>
/// 盘点结果类型1为盘盈2位盘亏
/// </summary>
[Column("盘点结果")]
public string ResultType { get; set; }
/// <summary>
/// 失败原因
/// </summary>
[Column("失败原因")]
public string FailRemark { get; set; }
/// <summary>
/// 备注
/// </summary>
[Column("备注")]
public string Remark { get; set; }
}
}