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.

51 lines
1.2 KiB

using System.ComponentModel.DataAnnotations;
using Volo.Abp.Domain.Entities;
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Qtyrfe;
public class Qtyrfe : Entity
{
/// <summary>
/// 序号
/// </summary>
[Key]
public int ID { get; set; }
/// <summary>
/// 物料
/// </summary>
public string mesout_qtyrfe_part { get; set; }
/// <summary>
/// 调出储位
/// </summary>
public string mesout_qtyrfe_loc_from { get; set; }
/// <summary>
/// 调入储位
/// </summary>
public string mesout_qtyrfe_loc_to { get; set; }
/// <summary>
/// 数量
/// </summary>
public decimal mesout_qtyrfe_num { get; set; }
/// <summary>
/// 调拨用户
/// </summary>
public string mesout_qtyrfe_user { get; set; }
/// <summary>
/// 写入时间
/// </summary>
public string mesout_qtyrfe_wt { get; set; }
/// <summary>
/// 类型(1为质量补)
/// </summary>
public string mesout_qtyrfe_type { get; set; }
public override object[] GetKeys()
{
return new object[] { ID };
}
/// <summary>
/// 是否读取(0,1)
/// </summary>
public long Yl1 { get; set; }
}