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
706 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 ismout : Entity
{
/// <summary>
/// ERP料号
/// </summary>
public string ismout_part { get; set; }
/// <summary>
/// 供应商代码
/// </summary>
public string ismout_vend { get; set; }
/// <summary>
/// 采购价格
/// </summary>
public decimal ismout_price { get; set; }
public override object[] GetKeys()
{
return new object[] { ismout_part, ismout_vend };
}
}