using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SensorHub.Servers.JsonFormat { public class JsonBody { public string bType { get; set; } //业务类型 public JsonBody(string bType) { this.bType = bType; } public JsonBody() { } } }