添加驳回原因操作
This commit is contained in:
parent
220c050f03
commit
ee9f7b9b4c
|
@ -232,5 +232,7 @@ public class ZyInfo implements Serializable {
|
|||
private String yuanTeacherNo;
|
||||
@TableField(exist = false)
|
||||
private String yuanTeacherName;
|
||||
@TableField(exist = false)
|
||||
private String bhContent;
|
||||
|
||||
}
|
||||
|
|
|
@ -51,7 +51,8 @@
|
|||
a.score as zyzb,
|
||||
b.score_fabu,
|
||||
b.py_content,
|
||||
b.py_file_path
|
||||
b.py_file_path,
|
||||
b.bh_content
|
||||
from zy_info a
|
||||
LEFT JOIN xxhbxsxkb c on a.rwbh = c.KCAPZBBH
|
||||
left join zy_info_student b on a.id = b.main_id and b.create_by = c.xh
|
||||
|
|
|
@ -871,6 +871,7 @@ public class ZyInfoStudentController extends JeecgController<ZyInfoStudent, IZyI
|
|||
updateWrapper.set("zzdf",null);
|
||||
updateWrapper.set("score",null);
|
||||
updateWrapper.eq("id",zyInfoStudent.getId());
|
||||
updateWrapper.set("bh_content",zyInfoStudent.getBhContent());
|
||||
zyInfoStudentService.update(updateWrapper);
|
||||
|
||||
|
||||
|
|
|
@ -104,6 +104,9 @@ public class ZyInfoStudent implements Serializable {
|
|||
@Dict(dicCode = "cdlx")
|
||||
private String cdlx;//存档类型
|
||||
|
||||
//驳回内容
|
||||
private String bhContent;
|
||||
|
||||
|
||||
/**作业名称*/
|
||||
@ApiModelProperty(value = "作业名称")
|
||||
|
|
|
@ -189,9 +189,9 @@ jeecg:
|
|||
app: http://localhost:8051
|
||||
path:
|
||||
#文件上传根目录 设置
|
||||
upload: /opt/jeecg-boot/upload
|
||||
upload: /data/jeecg-boot/upload
|
||||
#webapp文件路径
|
||||
webapp: /opt/jeecg-boot/webapp
|
||||
webapp: /data/jeecg-boot/webapp
|
||||
shiro:
|
||||
excludeUrls: /test/jeecgDemo/demo3,/test/jeecgDemo/redisDemo/**,/category/**,/visual/**,/map/**,/jmreport/bigscreen2/**,/api/getUserInfo
|
||||
#阿里云oss存储和大鱼短信秘钥配置
|
||||
|
|
Loading…
Reference in New Issue