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 InvTransHistDetailDto
{
///
/// 物料编号
///
[Comment("物料编号")]
public string ItemNum { get; set; }
///
/// 入库数
///
[Comment("入库数")]
public decimal QtyChangeAdvance { get; set; }
///
/// 出库数
///
[Comment("出库数")]
public decimal QtyChangeOut { get; set; }
///
/// 发生时间(yyyy-MM-dd)
///
[Comment("发生时间")]
public string CreateTime { get; set; }
}
}