using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ropin.Inspection.Model.SearchModel
{
public class TsecRecordItemsSearchModel : BaseSearchModel
{
private DateTime start;
private DateTime end;
///
/// 巡检者ID
///
public string IspUserId { get; set; }
///
/// 安检者ID
///
public string SecUserId { get; set; }
/////
///// 巡检点ID
/////
//public Guid SpotId { get; set; }
///
/// 巡检开始时间
///
public DateTime Start
{
get
{
return start;
}
set
{
start = value.AddHours(8);
}
}
///
/// 巡检结束时间
///
public DateTime End
{
get
{
return end;
}
set
{
end = value.AddHours(8);
}
}
/////
///// 安检状态
/////
//public string Status { get; set; }
public string C_StoreCode { get; set; }
public string C_AreaCode { get; set; }
}
}