22 lines
465 B
C#
22 lines
465 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Domain
|
|
{
|
|
public class retMsg
|
|
{
|
|
public bool result { get; set; }
|
|
public int retcode { get; set; }
|
|
public string retmsg { get; set; }
|
|
}
|
|
|
|
public class retMsg<T>
|
|
{
|
|
public bool result { get; set; }
|
|
public int retcode { get; set; }
|
|
public T retmsg { get; set; }
|
|
}
|
|
} |