|
@@ -1,99 +0,0 @@
|
|
|
-package com.qmth.distributed.print.business.bean.dto;
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
-import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
-import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
-import com.qmth.distributed.print.business.enums.AuthEnum;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
-
|
|
|
-import java.io.Serializable;
|
|
|
-
|
|
|
-/**
|
|
|
- * @Description: 授权配置 dto
|
|
|
- * @Param:
|
|
|
- * @return:
|
|
|
- * @Author: wangliang
|
|
|
- * @Date: 2022/4/26
|
|
|
- */
|
|
|
-public class TSAuthDto implements Serializable {
|
|
|
-
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- @ApiModelProperty(value = "主键")
|
|
|
- @TableId(value = "id")
|
|
|
- private Long id;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "学校id")
|
|
|
- @JsonSerialize(using = ToStringSerializer.class)
|
|
|
- private Long schoolId;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "accessKey")
|
|
|
- private String accessKey;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "accessSecret")
|
|
|
- private String accessSecret;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "离线授权证书")
|
|
|
- private String description;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "授权类型")
|
|
|
- private AuthEnum type;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "过期时间")
|
|
|
- private Long expireTime;
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getSchoolId() {
|
|
|
- return schoolId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setSchoolId(Long schoolId) {
|
|
|
- this.schoolId = schoolId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAccessKey() {
|
|
|
- return accessKey;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAccessKey(String accessKey) {
|
|
|
- this.accessKey = accessKey;
|
|
|
- }
|
|
|
-
|
|
|
- public String getAccessSecret() {
|
|
|
- return accessSecret;
|
|
|
- }
|
|
|
-
|
|
|
- public void setAccessSecret(String accessSecret) {
|
|
|
- this.accessSecret = accessSecret;
|
|
|
- }
|
|
|
-
|
|
|
- public String getDescription() {
|
|
|
- return description;
|
|
|
- }
|
|
|
-
|
|
|
- public void setDescription(String description) {
|
|
|
- this.description = description;
|
|
|
- }
|
|
|
-
|
|
|
- public AuthEnum getType() {
|
|
|
- return type;
|
|
|
- }
|
|
|
-
|
|
|
- public void setType(AuthEnum type) {
|
|
|
- this.type = type;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getExpireTime() {
|
|
|
- return expireTime;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExpireTime(Long expireTime) {
|
|
|
- this.expireTime = expireTime;
|
|
|
- }
|
|
|
-}
|