feixian_weifajianguan/OpenAuth.App/ServiceApp/DroneCaseInfo/Request/CaseInfoMineralsTuBanReq.cs

101 lines
2.7 KiB
C#
Raw Normal View History

2026-02-03 16:00:02 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.DroneCaseInfo.Request
{
public class CaseInfoMineralsTuBanReq
{
public CaseInfoMineralsTuBanReq() {
page = 1;
limit = 10;
weifatype_jgfill = 100;
wefatype_kcfill = 100;
hefapanding_fill = 100;
}
/// <summary>
/// 年份格式2024
/// </summary>
public string syear_base { get; set; }
/// <summary>
/// 图斑类型
/// </summary>
public string type_base { get; set; }
/// <summary>
/// 图斑来源
/// </summary>
public string tubanlaiyuan { get; set; }
/// <summary>
/// 下发开始时间(2024-07-08)
/// </summary>
public string startTime { get; set; }
/// <summary>
/// 下发结束时间(2024-07-08)
/// </summary>
public string endTime { get; set; }
/// <summary>
/// 加工违法类型
/// </summary>
public int weifatype_jgfill { get; set; }
/// <summary>
/// 开采违法类型
/// </summary>
public int wefatype_kcfill { get; set; }
/// <summary>
/// 是否重点矿区
/// </summary>
public string zhongdianflag_base { get; set; }
/// <summary>
/// 县区
/// </summary>
public string countyid { get; set; }
/// <summary>
/// 乡镇
/// </summary>
public string streetid { get; set; }
/// <summary>
/// 整改措施
/// </summary>
public string zhenggaitype_jgzhg { get; set; }
/// <summary>
/// 图斑编号
/// </summary>
public string tubannum_base { get; set; }
/// <summary>
/// 判定结果
/// </summary>
public int hefapanding_fill { get; set; }
/// <summary>
/// 当前状态
/// </summary>
public string status_base { get; set; }
public string tubanArea1 { get; set; }
/// <summary>
/// 图斑面积
/// </summary>
public string tubanArea2 { get; set; }
/// <summary>
/// 矿种(开采)
/// </summary>
public string kuangzhong_kcfill { get; set; }
/// <summary>
/// 页码
/// </summary>
/// <example>1</example>
public int page { get; set; }
/// <summary>
/// 每页条数
/// </summary>
/// <example>10</example>
public int limit { get; set; }
}
}