You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
901 B
40 lines
901 B
1 year ago
|
using System.ComponentModel.DataAnnotations;
|
||
|
using Volo.Abp.Domain.Entities;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.CallMtl;
|
||
|
public class CallMtl : Entity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 序号
|
||
|
/// </summary>
|
||
|
[Key]
|
||
|
public string mesout_callmtl_id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 物料
|
||
|
/// </summary>
|
||
|
public string mesout_callmtl_erpno { get; set; }
|
||
|
/// <summary>
|
||
|
/// 库位
|
||
|
/// </summary>
|
||
|
public string mesout_callmtl_loc { get; set; }
|
||
|
/// <summary>
|
||
|
/// 数量
|
||
|
/// </summary>
|
||
|
public decimal mesout_callmtl_num { get; set; }
|
||
|
/// <summary>
|
||
|
/// 时间
|
||
|
/// </summary>
|
||
|
public string mesout_callmtl_wt { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 是否读取(0,1)
|
||
|
/// </summary>
|
||
|
public long Yl1 { get; set; }
|
||
|
|
||
|
public override object[] GetKeys()
|
||
|
{
|
||
|
return new object[] { mesout_callmtl_id };
|
||
|
}
|
||
|
|
||
|
}
|