using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Win_in.Sfs.Shared.Domain.Shared; namespace Win_in.Sfs.Basedata.Application.Contracts; public class ItemBasicCheckInput { /// /// 允许采购 /// [Display(Name = "允许采购")] public bool? CanBuy { get; set; } /// /// 允许制造 /// [Display(Name = "允许制造")] public bool? CanMake { get; set; } /// /// 物品状态 /// [Display(Name = "物品状态")] public List Statuses { get; set; } = new(); /// /// 项目 /// [Display(Name = "项目")] public List Projects { get; set; } = new(); /// /// 分类 /// [Display(Name = "分类")] public Dictionary Categories { get; set; } = new(); }