44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.App.ServiceApp.Response
|
|||
|
|
{
|
|||
|
|
public class OffenceMineralsResp
|
|||
|
|
{
|
|||
|
|
public long countyid { get; set; }
|
|||
|
|
public string countyname { get; set; }
|
|||
|
|
public int xfwtzs { get; set; }
|
|||
|
|
public int hf { get; set; }
|
|||
|
|
public int qt { get; set; }
|
|||
|
|
public int wf { get; set; }
|
|||
|
|
public int ywcgd { get; set; }
|
|||
|
|
public int wwcgd { get; set; }
|
|||
|
|
public int wfck { get; set; }
|
|||
|
|
public int wfjg { get; set; }
|
|||
|
|
public double zgl { get; set; }
|
|||
|
|
public double bhl { get; set; }
|
|||
|
|
public double sbl { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
public class OffenceMineralsNewResp
|
|||
|
|
{
|
|||
|
|
public long countyid { get; set; }
|
|||
|
|
public string countyname { get; set; }
|
|||
|
|
public int xfwtzs { get; set; }
|
|||
|
|
public int ywc { get; set; }
|
|||
|
|
public int wwc { get; set; }
|
|||
|
|
public double wcl { get; set; }
|
|||
|
|
public int dxhf { get; set; }
|
|||
|
|
public int dxwf { get; set; }
|
|||
|
|
public int dxqt { get; set; }
|
|||
|
|
public int dxwdx { get; set; }
|
|||
|
|
public int flffkc { get; set; }
|
|||
|
|
public int flffjg { get; set; }
|
|||
|
|
public int cqwb { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|