23 lines
556 B
C#
23 lines
556 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_general_situation
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<general_situationData> data { get; set; }
|
|
}
|
|
public class general_situationData
|
|
{
|
|
public int Operation { get; set; }
|
|
public int Stop { get; set; }
|
|
public decimal? Area { get; set; }
|
|
public int Amount { get; set; }
|
|
}
|
|
}
|