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

102 lines
2.9 KiB
C#
Raw Normal View History

2026-02-03 16:00:02 +08:00
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Request
{
public class MineralsInfo
{
/// <summary>
/// Desc:开采主体(开采)
/// Default:
/// Nullable:True
/// </summary>
public string kaicaizhuti_kcfill { get; set; }
/// <summary>
/// Desc:年度
/// Default:
/// Nullable:True
/// </summary>
public string syear_base { get; set; }
/// <summary>
/// Desc:单位名称
/// Default:
/// Nullable:True
/// </summary>
public string danweiname_jgzhg { get; set; }
/// <summary>
/// Desc:是否重点矿区(开采)
/// Default:
/// Nullable:True
/// </summary>
public string zhongdianflag_base { get; set; }
/// <summary>
/// Desc:重点矿区名称(开采)
/// Default:
/// Nullable:True
/// </summary>
public string zhongdianname_base { get; set; }
/// <summary>
/// Desc:是否在国家自然保护区范围内
/// Default:
/// Nullable:True
/// </summary>
public string ziranbaohuflag_base { get; set; }
/// <summary>
/// Desc:所属国家自然保护区名称
/// Default:
/// Nullable:True
/// </summary>
public string ziranbaohuname_base { get; set; }
/// <summary>
/// Desc:违法开采面积(开采);单位-亩
/// Default:
/// Nullable:True
/// </summary>
public string weifakaicaiarea_base { get; set; }
/// <summary>
/// Desc:城市开发边界面积(加工);单位-平方米
/// Default:
/// Nullable:True
/// </summary>
public string cskfbjarea_base { get; set; }
/// <summary>
/// Desc:是否符合土地利用总体规划(加工)
/// Default:
/// Nullable:True
/// </summary>
public string tudiliyongflag_base { get; set; }
/// <summary>
/// Desc:设计产能(加工);单位-万吨
/// Default:
/// Nullable:True
/// </summary>
public decimal? shejichanneng_base { get; set; }
/// <summary>
/// Desc:违法占地面积(加工);单位-亩
/// Default:
/// Nullable:True
/// </summary>
public string weifazhandiarea_base { get; set; }
/// <summary>
/// Desc:处理时限;默认3个月审核通过后开始计算
/// Default:
/// Nullable:True
/// </summary>
public DateTime? chulishixian_base { get; set; }
}
}