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
553 B
28 lines
553 B
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp;
|
|
|
|
public class bcmout : Entity
|
|
{
|
|
/// <summary>
|
|
/// 代号
|
|
/// </summary>
|
|
public string bcmout_code { get; set; }
|
|
/// <summary>
|
|
/// 说明
|
|
/// </summary>
|
|
private string desc;
|
|
public string bcmout_desc
|
|
{
|
|
get { return desc; }
|
|
set
|
|
{
|
|
desc = DataChangeHelper.Cp850ToGBK(value);
|
|
}
|
|
}
|
|
|
|
public override object[] GetKeys()
|
|
{
|
|
return new object[] { bcmout_code };
|
|
}
|
|
}
|
|
|