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.
28 lines
642 B
28 lines
642 B
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp;
|
|
|
|
public class mes_period : Entity
|
|
{
|
|
/// <summary>
|
|
/// 库存年
|
|
/// </summary>
|
|
public string mes_period_ym { get; set; }
|
|
/// <summary>
|
|
/// 启日
|
|
/// </summary>
|
|
public string mes_period_start { get; set; }
|
|
/// <summary>
|
|
/// 迄日期
|
|
/// </summary>
|
|
public string mes_period_end { get; set; }
|
|
/// <summary>
|
|
/// 最后异动时间
|
|
/// </summary>
|
|
public string mes_period_dt { get; set; }
|
|
|
|
public override object[] GetKeys()
|
|
{
|
|
return new object[] { mes_period_ym };
|
|
}
|
|
}
|
|
|