| 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 partial class InvTransHistDayDto
- {
- /// <summary>
- /// 物料编号
- /// </summary>
- [Comment("物料编号")]
- public string ItemNum { get; set; }
- /// <summary>
- /// 快照最大计算时间
- /// </summary>
- [Comment("快照最大计算时间")]
- public DateTime? HistMinTime { get; set; }
- }
- }
|