using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Business.StructuredDB.MES
{
///
/// 对账单
///
[Comment("对账单")]
[Keyless]
public class SupplierStatementDto
{
///
/// 物料编号
///
[Comment("物料编号")]
public string ItemNum { get; set; }
///
/// 净价
///
[Comment("净价")]
public decimal NETPR { get; set; }
}
}