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 BalanceNumDto { /// /// 物料编号 /// [Comment("物料编号")] public string ItemNum { get; set; } /// /// 期末数 /// [Comment("期末数")] public decimal BalanceNum { get; set; } } }