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.
42 lines
983 B
42 lines
983 B
2 years ago
|
using Volo.Abp.Domain.Entities;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp;
|
||
|
|
||
|
public class mes_bom : Entity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 父物料号
|
||
|
/// </summary>
|
||
|
public string mes_bom_assy { get; set; }
|
||
|
/// <summary>
|
||
|
/// 子物料号
|
||
|
/// </summary>
|
||
|
public string mes_bom_part { get; set; }
|
||
|
/// <summary>
|
||
|
/// 目标用量
|
||
|
/// </summary>
|
||
|
public decimal mes_bom_qty { get; set; }
|
||
|
/// <summary>
|
||
|
/// 变更起日
|
||
|
/// </summary>
|
||
|
public string mes_bom_chg_e { get; set; }
|
||
|
/// <summary>
|
||
|
/// 变更迄日
|
||
|
/// </summary>
|
||
|
public string mes_bom_chg_b { get; set; }
|
||
|
/// <summary>
|
||
|
/// 父物料流水号
|
||
|
/// </summary>
|
||
|
public string mes_bom_part_ser { get; set; }
|
||
|
/// <summary>
|
||
|
/// 子物料流水号
|
||
|
/// </summary>
|
||
|
public string mes_bom_assy_ser { get; set; }
|
||
|
|
||
|
public override object[] GetKeys()
|
||
|
{
|
||
|
return new object[] { mes_bom_assy + mes_bom_part };
|
||
|
}
|
||
|
|
||
|
}
|