dto (11).ts 967 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /** 查询信息输出 */
  2. export interface ResultOutputPageOutputPushUsersDto{
  3. /** 是否成功标记 */
  4. success?: boolean
  5. /** 编码 */
  6. code?: string | null
  7. /** 消息 */
  8. msg?: string | null
  9. /** 数据 */
  10. data?:PageOutputPushUsersDto[] | null
  11. }
  12. export interface PageOutputPushUsersDto{
  13. /**
  14. * 数据总数
  15. * @format int64
  16. */
  17. total?: number
  18. /** 数据 */
  19. list?: PushUsersDto[] | null
  20. }
  21. export interface PushUsersDto{
  22. /** 用户id */
  23. userId?: integer
  24. /** 用户名称 */
  25. userName?: string
  26. /** 微信昵称 */
  27. nickname?: string
  28. /** 用户角色 */
  29. userRole?: string
  30. /** 用户手机号 */
  31. userPhone?: string
  32. /** 用户Openid */
  33. userOpenid?: string
  34. /** 添加时间 */
  35. createtime?: string
  36. }
  37. export interface pageInput {
  38. /**当前页数 */
  39. CurrentPage: number | any
  40. /**展示页数 */
  41. PageSize: number | any
  42. }