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 QtyChangeDto
{
///
/// 物料编号
///
[Comment("物料编号")]
public string ItemNum { get; set; }
}
}