| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.IO;
- using Newtonsoft.Json;
- namespace HXX.Scanner.Biz.Socket
- {
- public class msg_base
- {
- /// <summary>
- /// 获取实体的json
- /// </summary>
- /// <returns></returns>
- public string ToJson()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|