|
@@ -1,6 +1,7 @@
|
|
|
package com.yonge.cooleshow.biz.dal.dto.search;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.yonge.cooleshow.common.enums.SysUserType;
|
|
|
import com.yonge.toolset.base.page.QueryInfo;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@@ -16,6 +17,9 @@ public class SysUserContractRecordSearch extends QueryInfo{
|
|
|
@ApiModelProperty(value = "用户id")
|
|
|
private Long userId;
|
|
|
|
|
|
+ @ApiModelProperty(value = "用户类型 STUDENT 学生 TEACHER 老师")
|
|
|
+ private SysUserType userType;
|
|
|
+
|
|
|
@ApiModelProperty(value = "签署状态 DONG 签署中 SUCCESS 签署完成 FAILED 签署失败")
|
|
|
private String status;
|
|
|
|
|
@@ -35,4 +39,12 @@ public class SysUserContractRecordSearch extends QueryInfo{
|
|
|
public void setStatus(String status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
+
|
|
|
+ public SysUserType getUserType() {
|
|
|
+ return userType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserType(SysUserType userType) {
|
|
|
+ this.userType = userType;
|
|
|
+ }
|
|
|
}
|