namespace ZR.Model.Business.Dto
{
///
/// 工作记录查询对象
///
public class CamWorkrecordQueryDto : PagerInfo
{
public string DeptName { get; set; }
public string Address { get; set; }
public string Content { get; set; }
public string StatusName { get; set; }
}
///
/// 工作记录输入输出对象
///
public class CamWorkrecordDto
{
[Required(ErrorMessage = "主键不能为空")]
public int Id { get; set; }
public string DeptName { get; set; }
public string ImageUrl { get; set; }
public DateTime? RecordTime { get; set; }
public string Longitude { get; set; }
public string Latitude { get; set; }
public string Address { get; set; }
public string Content { get; set; }
public string StatusName { get; set; }
public string Remarks { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? UpdateTime { get; set; }
[ExcelColumn(Name = "状态")]
public string StatusNameLabel { get; set; }
}
///
///
///
public class CamRecordWorkDto
{
///
/// 部门名称
///
public string DeptName { get; set; }
///
/// 图片地址
///
public string Image { get; set; }
///
/// 工作记录时间
///
public DateTime? RecordTime { get; set; }
///
/// 经度
///
public string Longitude { get; set; }
///
/// 纬度
///
public string Latitude { get; set; }
///
/// 工作地点
///
public string Address { get; set; }
///
/// 工作内容
///
public string Content { get; set; }
///
/// 状态
///
public string StatusName { get; set; }
///
///备注
///
public string Remarks { get; set; }
///
///
///
public List Workers { get; set; }
}
}