12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /** 查询信息输出 */
- export interface ResultOutputPageOutputPushUsersDto{
- /** 是否成功标记 */
- success?: boolean
- /** 编码 */
- code?: string | null
- /** 消息 */
- msg?: string | null
- /** 数据 */
- data?:PageOutputPushUsersDto[] | null
- }
- export interface PageOutputPushUsersDto{
- /**
- * 数据总数
- * @format int64
- */
- total?: number
- /** 数据 */
- list?: PushUsersDto[] | null
- }
- export interface PushUsersDto{
- /** 用户id */
- userId?: integer
- /** 用户名称 */
- userName?: string
- /** 微信昵称 */
- nickname?: string
- /** 用户角色 */
- userRole?: string
- /** 用户手机号 */
- userPhone?: string
- /** 用户Openid */
- userOpenid?: string
- /** 添加时间 */
- createtime?: string
- }
- export interface pageInput {
- /**当前页数 */
- CurrentPage: number | any
- /**展示页数 */
- PageSize: number | any
- }
|