using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.SearchModel { public class TispRecordAlarmSearchModel : BaseSearchModel { private DateTime start; private DateTime end; /// /// 创建者ID /// public string CreateUserId { get; set; } /// /// 恢复者ID /// public string UpdateUserId { get; set; } /// /// 巡检点ID /// public string SpotId { get; set; } /// /// 巡检开始时间 /// public DateTime Start { get { return start; } set { start = value; } } /// /// 巡检结束时间 /// public DateTime End { get { return end; } set { end = value; } } public string C_StoreCode { get; set; } public string C_AreaCode { get; set; } } }