@@ -76,5 +76,5 @@ public class ClassGradeUserEditBo {
/** 失败原因 */
@ApiModelProperty("失败原因")
- private Long reason;
+ private String reason;
}
@@ -64,8 +64,10 @@ private static final long serialVersionUID=1L;
/** 班主任ID */
private Long sysUserId;
- /** 官方信息推送接口 */
+ /** 官方账号开通(有接口) */
private Long interfacePushId;
+ /** 官方账号开通(无接口) */
+ private Long noInterfacePushId;
/** 备注 */
private String remark;
/** 官方账号开通 */
@@ -842,6 +842,9 @@ public class ClassGradeUserServiceImpl extends ServiceImpl<ClassGradeUserMapper,
if (bo.getLearnStatus() != null) {
update.setLearnStatus(bo.getLearnStatus());
+ if (bo.getReason() != null) {
+ update.setReason(bo.getReason());
+ }
this.updateById(update);