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