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.
22 lines
427 B
22 lines
427 B
1 year ago
|
using Volo.Abp.Domain.Entities;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp;
|
||
|
|
||
|
public class locmout : Entity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 库位
|
||
|
/// </summary>
|
||
|
public string locmout_loc { get; set; }
|
||
|
/// <summary>
|
||
|
/// 库位类型
|
||
|
/// </summary>
|
||
|
public string locmout_stat2 { get; set; }
|
||
|
|
||
|
|
||
|
public override object[] GetKeys()
|
||
|
{
|
||
|
return new object[] { locmout_loc };
|
||
|
}
|
||
|
}
|