30 lines
899 B
C#
30 lines
899 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ZXDService.Dto
|
|
{
|
|
public class AllocateRes3List
|
|
{
|
|
public string appid { get; set; }
|
|
public string appuserid { get; set; }
|
|
public int uid { get; set; }
|
|
public string mobile { get; set; }
|
|
public string unionid { get; set; }
|
|
public int ch { get; set; }
|
|
public string ctime { get; set; }
|
|
public int customerid { get; set; }
|
|
public string appname { get; set; }
|
|
public string nickname { get; set; }
|
|
public string appTypeName { get; set; }
|
|
public string resid { get; set; }
|
|
|
|
}
|
|
|
|
public class AllocateRes3RequestDto
|
|
{
|
|
public string conditions { get; set; }
|
|
public List<string> dates { get; set; }
|
|
public string ch { get; set; }
|
|
public string isAnd { get; set; }
|
|
public int iPageIndex { get; set; }
|
|
}
|
|
} |