| 12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- //----------------------------------------------------------------
- //Module Name: $safeprojectname$
- //Purpose:
- //CopyRight: Muchinfo
- //History:
- //----------------------------------------------------------------
- //DateTime 2016/1/20 9:10:54
- //Author
- //Description Create
- //----------------------------------------------------------------
- namespace Muchinfo.MTPClient.Data
- {
- /// <summary>
- /// 接收返回对象
- /// </summary>
- /// <typeparam name="T"></typeparam>
- public class ResponeEntity<T> //where T : class, new()
- {
- public T Entity { get; set; }
- public int RetCode { get; set; }
- public string RetMessage { get; set; }
- }
- }
|