You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
985 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Web;
namespace DSWeb.Common.Model
{
public class RespCommon
{
public bool Success { get; set; }
public string Message { get; set; }
public int Code { get; set; }
}
public class RespPage : RespCommon
{
public int Offset { get; set; }
public int Limit { get; set; }
public int Total { get; set; }
}
public class RespCommonData : RespCommon
{
public object Data { get; set; }
}
public class RespPageData : RespPage
{
public object DataList { get; set; }
}
public class RespBsSuggest
{
public int code { get; set; }
public string message { get; set; }
public object value { get; set; }
}
public class RespCodeName
{
public string code { get; set; }
public string name { get; set; }
}
}