using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BayonetTransfer.Model
{
///
/// 返回object数据对象使用
///
/// 数据对象
public class ResultDataModel
{
public int Result_Code { get; set; }
public string Result_Desc { get; set; }
public T Result_Data { get; set; }
}
}