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.
43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///库存调整
|
|
/// </summary>
|
|
[Serializable]
|
|
public class StockAdjustDefine
|
|
{
|
|
[Column("part_no")]
|
|
[DisplayName("零件号")]
|
|
public string PartNo { get; set; }
|
|
|
|
|
|
[Column("carton_no")]
|
|
[DisplayName("箱条码")]
|
|
public string CartonNo { get; set; }
|
|
|
|
[Column("stock_qty")]
|
|
[DisplayName("库存数量")]
|
|
public string stockQty { get; set; }
|
|
|
|
[Column("qty")]
|
|
[DisplayName("数量")]
|
|
public string Qty { get; set; }
|
|
|
|
[Column("locate_name")]
|
|
[DisplayName("实盘库位")]
|
|
public string LocateName { get; set; }
|
|
|
|
[Column("sys_locate_name")]
|
|
[DisplayName("系统库位")]
|
|
public string SysLocateName { get; set; }
|
|
}
|
|
}
|