using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Domain { /// /// 生产工序配置查询 /// public class ProStepConfigurationSearch { public string ProcessStepName { get; set; } public bool? IsUse { get; set; } } }