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.
25 lines
549 B
25 lines
549 B
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 };
|
|
}
|
|
}
|
|
|