UserBean.java 733 Bytes
Newer Older
yuquan.zhu committed
1 2 3 4 5 6
package cn.timer.api.config.annotation;

import java.io.Serializable;

import cn.timer.api.bean.qyzx.QyzxEmpLogin;
import cn.timer.api.config.swagger.IgnoreSwaggerParameter;
7
import cn.timer.api.dto.yggl.UserInfo;
yuquan.zhu committed
8 9 10 11 12 13 14 15
import lombok.*;

@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class UserBean implements Serializable {

16 17
	private static final long serialVersionUID = -1141678314103123565L;

yuquan.zhu committed
18 19 20 21 22 23 24 25 26 27 28 29 30 31
	@IgnoreSwaggerParameter
	private Integer empNum;

	@IgnoreSwaggerParameter
	private Integer orgCode;

	@IgnoreSwaggerParameter
	private QyzxEmpLogin qyzxEmpLogin;

	@IgnoreSwaggerParameter
	private String token;

	@IgnoreSwaggerParameter
	private String refreshToken;
32 33 34 35
	
	@IgnoreSwaggerParameter
	private UserInfo userInfo;
	
yuquan.zhu committed
36 37

}