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