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.
49 lines
1.2 KiB
49 lines
1.2 KiB
using System.ComponentModel.DataAnnotations;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Frozen;
|
|
public class Frozen : Entity
|
|
{
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
[Key]
|
|
public long mesout_frozen_id { get; set; }
|
|
/// <summary>
|
|
/// 类型
|
|
/// </summary>
|
|
public string mesout_frozen_type { get; set; }
|
|
/// <summary>
|
|
/// 物料
|
|
/// </summary>
|
|
public string mesout_frozen_part { get; set; }
|
|
/// <summary>
|
|
/// 日期
|
|
/// </summary>
|
|
public string mesout_frozen_date { get; set; }
|
|
/// <summary>
|
|
/// 来源库位
|
|
/// </summary>
|
|
public string mesout_frozen_loc { get; set; }
|
|
/// <summary>
|
|
/// 冻结原因
|
|
/// </summary>
|
|
public string mesout_frozen_reason { get; set; }
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
public decimal mesout_frozen_num { get; set; }
|
|
/// <summary>
|
|
/// 冻结用户
|
|
/// </summary>
|
|
public string mesout_frozen_user { get; set; }
|
|
/// <summary>
|
|
/// 是否读取(0,1)
|
|
/// </summary>
|
|
public long Yl1 { get; set; }
|
|
|
|
public override object[] GetKeys()
|
|
{
|
|
return new object[] { mesout_frozen_id };
|
|
}
|
|
}
|
|
|