You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
600 B
Java
28 lines
600 B
Java
package com.glxp.api.entity.auth;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@ApiModel("权限验证实体")
|
|
@Data
|
|
public class AuthCheckEntity {
|
|
|
|
@ApiModelProperty(value = "id")
|
|
private Integer id;
|
|
|
|
@ApiModelProperty(value = "器械信息")
|
|
private String machineInfo;
|
|
|
|
@ApiModelProperty(value = "备注")
|
|
private String remark;
|
|
|
|
@ApiModelProperty(value = "注册码")
|
|
private String registerCode;
|
|
|
|
@ApiModelProperty(value = "创建日期")
|
|
private Date createDate;
|
|
}
|