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.
 
 
 
 
 
 

33 lines
721 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;
/// <summary>
/// 销售价格
/// </summary>
public class spriceout : Entity
{
/// <summary>
/// ERP料号
/// </summary>
public string spriceout_part { get; set; }
/// <summary>
/// 客户代码
/// </summary>
public string spriceout_cust { get; set; }
/// <summary>
/// 销售价格
/// </summary>
public decimal spriceout_price { get; set; }
public override object[] GetKeys()
{
return new object[] { spriceout_part, spriceout_cust };
}
}