|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.ibeetl.jlw.web.query;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
|
|
import cn.jlw.validate.ValidateConfig;
|
|
|
|
|
import com.ibeetl.admin.core.annotation.Query;
|
|
|
|
|
import com.ibeetl.admin.core.web.query.PageParam;
|
|
|
|
@ -121,9 +122,9 @@ public class StudentClientLinkQuery extends PageParam {
|
|
|
|
|
pojo.setStudentClientLinkContent(this.getStudentClientLinkContent());
|
|
|
|
|
pojo.setStudentClientLinkType(this.getStudentClientLinkType());
|
|
|
|
|
pojo.setStudentClientLinkImg(this.getStudentClientLinkImg());
|
|
|
|
|
pojo.setStudentClientLinkStatus(this.getStudentClientLinkStatus());
|
|
|
|
|
pojo.setStudentClientLinkStatus(ObjectUtil.defaultIfNull(this.getStudentClientLinkStatus(), 1));
|
|
|
|
|
pojo.setStudentClientLinkOpenType(this.getStudentClientLinkOpenType());
|
|
|
|
|
pojo.setCreateTime(this.getCreateTime());
|
|
|
|
|
pojo.setCreateTime(ObjectUtil.defaultIfNull(this.getCreateTime(), new Date()));
|
|
|
|
|
pojo.setUserId(this.getUserId());
|
|
|
|
|
pojo.setOrgId(this.getOrgId());
|
|
|
|
|
return pojo;
|
|
|
|
|