using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Dto
{
///
/// 巡检员
///
public class InspectorBase
{
///
///
///
public long EmployeeID { get; set; }
///
///
///
public string RealName { get; set; }
///
///
///
public string LastInsepectDay { get; set; }
}
}