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.
 
 
 
 
 
 

40 lines
801 B

using Volo.Abp.Domain.Entities;
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Tyrp;
public class cmout : Entity
{
/// <summary>
/// 客户代号
/// </summary>
public string cmout_cust { get; set; }
/// <summary>
/// 客户简称
/// </summary>
private string shot;
public string cmout_shot
{
get { return shot; }
set
{
shot = DataChangeHelper.Cp850ToGBK(value);
}
}
/// <summary>
/// 客户名称
/// </summary>
private string name;
public string cmout_name
{
get { return name; }
set
{
name = DataChangeHelper.Cp850ToGBK(value);
}
}
public override object[] GetKeys()
{
return new object[] { cmout_cust };
}
}