using System;
using System.Collections.Generic;
namespace GxPress.Result.Organization
{
public class OrganizationRequest
{
}
///
/// 机构搜索
///
public class OrganizationListRequest : Common.Page.PageParameter
{
///
/// 搜索字段
///
///
public string KeyWord { get; set; }
}
///
/// 机构修改
///
public class OrganizationUpdateRequest
{
///
///
///
///
public int Id { get; set; }
///
/// 名称
///
///
public string Name { get; set; }
///
/// 地址
///
///
public string Address { get; set; }
///
/// 联系人
///
///
public string LinkName { get; set; }
///
/// 联系电话
///
///
public string LinkPhone { get; set; }
///
/// 开通状态 1 立即 2定时开通
///
///
public int OpenStatus { get; set; }
///
/// 启用时间
///
///
public string OpenTime { get; set; }
///
/// 开始时间
///
///
public string BeginTime { get; set; }
///
/// 结束时间
///
///
public string EndTime { get; set; }
///
/// 是否禁用 1禁用 2未禁用
///
///
public int IsDisable { get; set; }
///
/// 1关闭 2开启
///
///
public int IsClose { get; set; }
///
/// 设备数量
///
///
public int FacilityCount{get;set;}
}
///
/// 修改启用停用
///
public class OrganizationUpdateDisableRequest
{
///
/// id
///
///
public List Ids { get; set; }
///
/// 启用
///
///
public bool IsDisable { get; set; }
}
}