| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- 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
- {
- /// <summary>
- /// 物料id
- /// </summary>
- public long item_id { get; set; }
- /// <summary>
- /// 运输中提前期_天
- /// </summary>
- public decimal? transportation_leadtime { get; set; }
- /// <summary>
- /// 仓库中提前期_天
- /// </summary>
- public decimal? stock_leadtime { get; set; }
- /// <summary>
- /// 生产中提前期_天
- /// </summary>
- public decimal? production_leadtime { get; set; }
- /// <summary>
- /// 下单提前期_天
- /// </summary>
- public decimal? order_leadtime { get; set; }
- /// <summary>
- /// 最小订单量
- /// </summary>
- [Comment("最小订单量")]
- public decimal? minorderqty { get; set; }
- /// <summary>
- /// 投料自动取整
- /// </summary>
- [Comment("投料自动取整")]
- public int? put_integer { get; set; }
- /// <summary>
- /// 工单发料时间/天
- /// </summary>
- [Precision(23, 10)]
- [Comment("工单发料时间/天")]
- public decimal? ordissu_days { get; set; }
- /// <summary>
- /// 最小包装量
- /// </summary>
- [Comment("最小包装量")]
- [Required]
- [DefaultValue(0)]
- [Precision(23, 10)]
- public decimal? minpackqty { get; set; }
- }
- }
|