You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
362 B
22 lines
362 B
package com.hai.model;
|
|
|
|
import com.hai.entity.HighUser;
|
|
|
|
/**
|
|
* @Auther: 胡锐
|
|
* @Description:
|
|
* @Date: 2021/3/10 22:50
|
|
*/
|
|
public class HighUserModel {
|
|
|
|
// 用户
|
|
private HighUser highUser;
|
|
|
|
public HighUser getHighUser() {
|
|
return highUser;
|
|
}
|
|
|
|
public void setHighUser(HighUser highUser) {
|
|
this.highUser = highUser;
|
|
}
|
|
}
|
|
|