UserBean.java 637 Bytes
Newer Older
yuquan.zhu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package cn.timer.api.config.annotation;

import java.io.Serializable;

import cn.timer.api.bean.qyzx.QyzxEmpLogin;
import cn.timer.api.config.swagger.IgnoreSwaggerParameter;
import lombok.*;

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

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

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

	@IgnoreSwaggerParameter
	private Integer orgCode;

	@IgnoreSwaggerParameter
	private QyzxEmpLogin qyzxEmpLogin;

	@IgnoreSwaggerParameter
	private String token;

	@IgnoreSwaggerParameter
	private String refreshToken;

}