You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
491 B
22 lines
491 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace FireWebAPIApp.Models
|
|
{
|
|
/// <summary>
|
|
/// 大华组织机构信息查询返回数据模型
|
|
/// </summary>
|
|
public class DaHuaOrgQueryMo
|
|
{
|
|
/// <summary>
|
|
/// 机构信息ID
|
|
/// </summary>
|
|
public string OrgId { get; set; }
|
|
/// <summary>
|
|
/// 用户信息ID
|
|
/// </summary>
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|