feixian_weifajianguan/OpenAuth.App/ServiceApp/DroneCaseInfo/Response/OffenceTBResp.cs

26 lines
764 B
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.Response
{
public class OffenceTBResp
{
public long countyid { get; set; }
public string countyname { get; set; }
public int jsydtbzs { get; set; }
public double jsydmj { get; set; }
public int nydtbzs { get; set; }
public double nydmj { get; set; }
public double nydgdmj { get; set; }
public int tdttbzs { get; set; }
public double tdtmj { get; set; }
public double tdtgdmj { get; set; }
public int zjttbzs { get; set; }
public double zjmj { get; set; }
public double zjgdmj { get; set; }
}
}