using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.ResourceExamineManagement.Dto { public class ICItemLeadTimeDto { /// /// 物料id /// public long item_id { get; set; } /// /// 运输中提前期_天 /// public decimal? transportation_leadtime { get; set; } /// /// 仓库中提前期_天 /// public decimal? stock_leadtime { get; set; } /// /// 生产中提前期_天 /// public decimal? production_leadtime { get; set; } /// /// 下单提前期_天 /// public decimal? order_leadtime { get; set; } /// /// 最小订单量 /// [Comment("最小订单量")] public decimal? minorderqty { get; set; } /// /// 投料自动取整 /// [Comment("投料自动取整")] public int? put_integer { get; set; } /// /// 工单发料时间/天 /// [Precision(23, 10)] [Comment("工单发料时间/天")] public decimal? ordissu_days { get; set; } /// /// 最小包装量 /// [Comment("最小包装量")] [Required] [DefaultValue(0)] [Precision(23, 10)] public decimal? minpackqty { get; set; } } }