| 123456789101112131415161718192021222324252627282930 |
- 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
- {
- /// <summary>
- /// 对账单
- /// </summary>
- [Comment("对账单")]
- [Keyless]
- public class SupplierStatementDto
- {
- /// <summary>
- /// 物料编号
- /// </summary>
- [Comment("物料编号")]
- public string ItemNum { get; set; }
- /// <summary>
- /// 净价
- /// </summary>
- [Comment("净价")]
- public decimal NETPR { get; set; }
- }
- }
|