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.
29 lines
565 B
29 lines
565 B
2 years ago
|
using Volo.Abp.Domain.Entities;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp;
|
||
|
|
||
|
public class pjtmout : Entity
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 专案代号
|
||
|
/// </summary>
|
||
|
public string pjtmout_id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 专案说明
|
||
|
/// </summary>
|
||
|
private string desc;
|
||
|
public string pjtmout_desc
|
||
|
{
|
||
|
get { return desc; }
|
||
|
set
|
||
|
{
|
||
|
desc = DataChangeHelper.Cp850ToGBK(value);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public override object[] GetKeys()
|
||
|
{
|
||
|
return new object[] { pjtmout_id };
|
||
|
}
|
||
|
}
|