using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ropin.Inspection.Model.SearchModel
{
public class ReportSearchModel:BaseSearchModel
{
public string C_Name { get; set; }
public int I_Type { get; set; }
public string C_GroupName { get; set; }
private DateTimeOffset start;
private DateTimeOffset end;
///
/// 开始时间
///
public DateTimeOffset Start
{
get
{
return start;
}
set
{
start = value;
}
}
///
/// 结束时间
///
public DateTimeOffset End
{
get
{
return end;
}
set
{
end = value.AddDays(1).AddHours(8);
}
}
public string StoreCode { get; set; }
}
}