using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Domain { public class ProPlanStepConfigSearch { public int Id { get; set; } public string OrderNo { get; set; } public string ProcessStepKey { get; set; } public string ProcessStepName { get; set; } public int DepartId { get; set; } public int AdminId { get; set; } public int? Status { get; set; } public string Remark { get; set; } public int UpdateBy { get; set; } public DateTime? UpdateTime { get; set; } public DateTime? EndUpdateTime { get; set; } public DateTime? CreateTime { get; set; } } }