| 123456789101112131415161718192021222324 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace EasyModbusClient.businessBody{    class ResponseBody    {        public static ResponseBody newObject()        {            ResponseBody cobject = new ResponseBody();            cobject.Code = util.Constants.RET_SUCCESS_CODE;            cobject.Msg = util.Constants.OPERATE_SUCCESS_MSG;            return cobject;        }        public int Code { get; set; } // 返回code        public string Msg { get; set; } // 返回msg        public string Data { get; set; } // 返回data内容    }}
 |