using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace WIDESEA_Entity.CustomModels.RGVModel
|
{
|
public class RgvReturnModel
|
{
|
public int code { get; set; }
|
|
public string message { get; set; }
|
|
public string data { get; set; }
|
|
public void OK()
|
{
|
this.code = 1;
|
this.message = "Success";
|
}
|
|
public void Error(string errMsg)
|
{
|
this.code = -1;
|
this.message = errMsg;
|
}
|
}
|
}
|