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.
26 lines
549 B
26 lines
549 B
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
using Volo.Abp.Domain.Entities;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp;
|
||
|
public class locdout : Entity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 储位
|
||
|
/// </summary>
|
||
|
public string locdout_loc { get; set; }
|
||
|
/// <summary>
|
||
|
/// 零件
|
||
|
/// </summary>
|
||
|
public string locdout_part { get; set; }
|
||
|
|
||
|
|
||
|
public override object[] GetKeys()
|
||
|
{
|
||
|
return new object[] { locdout_loc, locdout_part };
|
||
|
}
|
||
|
}
|