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.
82 lines
1.9 KiB
82 lines
1.9 KiB
using System.Text.Json; |
|
using System.Text.Json.Serialization; |
|
|
|
//盾安云第三方请求接口的参数 |
|
namespace ThirdPartyServices.Application.ShenZhouShengAn.RequestDto |
|
{ |
|
/// <summary> |
|
/// 用户信息参数 |
|
/// </summary> |
|
public class LoginUsersConfiguration |
|
{ |
|
[JsonPropertyName("uid")] |
|
public int Uid { get; set; } |
|
|
|
[JsonPropertyName("ubpid")] |
|
public int Ubpid { get; set; } |
|
|
|
[JsonPropertyName("id")] |
|
public int UserId { get; set; } |
|
} |
|
|
|
/// <summary> |
|
/// 单位风险点汇总数据 |
|
/// </summary> |
|
public class RiskAreaQueryDto |
|
{ |
|
/// <summary> |
|
/// 单位id |
|
/// </summary> |
|
public int Branch_Id { get; set; } = 0; |
|
|
|
/// <summary> |
|
/// Ubpid |
|
/// </summary> |
|
public int Ubpid { get; set; } = 0; |
|
|
|
/// <summary> |
|
/// Uid |
|
/// </summary> |
|
public int Uid { get; set; } = 0; |
|
} |
|
|
|
/// <summary> |
|
/// 条件组合查询隐患数据 |
|
/// </summary> |
|
public class DangerInfoQueryDto |
|
{ |
|
public int? Ubpid { get; set; } |
|
|
|
/// <summary> |
|
/// /隐患状态:0待核查,1待整改,2待验收,3治理完毕,4不是隐患 |
|
/// </summary> |
|
public string Status { get; set; } |
|
|
|
/// <summary> |
|
/// 第三方定义的隐患等级2一般隐患,3重大隐患 |
|
/// </summary> |
|
public string? Result { get; set; } |
|
|
|
public int? Page { get; set; } |
|
|
|
public int? Branch_id { get; set; } |
|
|
|
public string? Start_time { get; set; } |
|
|
|
public string? End_time { get; set; } |
|
|
|
public long? P_region_id { get; set; } |
|
|
|
public long? Region_id { get; set; } |
|
} |
|
|
|
/// <summary> |
|
/// 获得四色图区域列表请求参数 |
|
/// </summary> |
|
public class RiskFourcoMapReqDto |
|
{ |
|
public int Floor { get; set; } |
|
|
|
public int Ubpid { get; set; } |
|
} |
|
} |