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.
34 lines
724 B
34 lines
724 B
1 year ago
|
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>
|
||
|
/// 物料代码
|
||
|
/// </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 };
|
||
|
}
|
||
|
}
|