using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Entity.Enum;
namespace VOL.Model.School.Request
{
///
/// 学校分页
///
public class SchoolPageListParam : PageDto
{
///
///学校编号
///
public string SchoolCode { get; set; }
///
///学校类型
///
public SchoolType SchoolType { get; set; }
///
///学校名称
///
public string SchoolName { get; set; }
///
///联系人
///
public string UserTrueName { get; set; }
///
///联系方式
///
public string PhoneNo { get; set; }
///
/// 状态
///
public SchoolStatus Status { get; set; }
}
///
/// 学校参数
///
public class SchoolParam
{
///
///学校编号
///
public string SchoolCode { get; set; }
}
///
/// 学校添加
///
public class AddSchoolParam
{
///
///学校性质Id
///
public int? SchoolNatureId { get; set; }
///
///学校编号
///
public string SchoolCode { get; set; }
///
///学校类型
///
public SchoolType SchoolType { get; set; }
///
///学校名称
///
public string SchoolName { get; set; }
///
///联系人
///
public string UserTrueName { get; set; }
///
///所属省份
///
public string Province { get; set; }
///
///所属城市
///
public string City { get; set; }
///
///所属区域
///
public string Area { get; set; }
///
///用户名
///
public string UserName { get; set; }
///
///密码
///
//public string Pwd { get; set; }
///
///备注
///
//public string Remarks { get; set; }
///
///联系方式
///
public string PhoneNo { get; set; }
///
/// 设备编号
///
public List DeviceCode { get; set; }
}
///
/// 设置学校状态
///
public class SchoolStatusParam : SchoolParam
{
///
/// 状态
///
public SchoolStatus Status { get; set; }
}
}