• This project
    • Loading...
  • Sign in

fangyeqing / xkl-interface · Files

Go to a project

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • xkl-interface
  • ..
  • model
  • UsrInfoModelForUSPIH.java
  • Add rtn more information when verify the usr account
    74798f86
    by zhaoyue
    2018-01-25 22:17:41 +0800  
    Browse Files
UsrInfoModelForUSPIH.java 355 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.xkl.model;

import lombok.Data;

/**
 * USPIH用户验证时返回的用户信息
 */
@Data
public class UsrInfoModelForUSPIH {
    private String name;
    private int sex;
    private int age;

    public UsrInfoModelForUSPIH(String name, int sex, int age) {
        this.name = name;
        this.sex = sex;
        this.age = age;
    }
}