用户需求验收人,问题反馈

This commit is contained in:
2025-08-11 18:06:04 +08:00
parent 9386e23fb4
commit 632f381e02
5 changed files with 11 additions and 2 deletions

View File

@ -91,7 +91,7 @@ public class ZtStoryUserController {
eq.in(ZtStoryUser::getStatus, UserStoryEnums.CFM.getCode(),UserStoryEnums.KFZ.getCode());
}
eq.select(ZtStoryUser::getId,ZtStoryUser::getTitle,ZtStoryUser::getProduct,
ZtStoryUser::getOpenedby,ZtStoryUser::getAssignedto
ZtStoryUser::getOpenedby,ZtStoryUser::getAssignedto,ZtStoryUser::getYsUser
);
List<ZtStoryUser> list = storyUserService.list(eq
);

View File

@ -200,6 +200,10 @@ public class ZtStoryUserDTO implements Serializable {
* 1通过 2不通过
*/
private Integer ysFlag;
/**
* 验收人
*/
private String ysUser;
private String spec;

View File

@ -208,6 +208,10 @@ public class ZtStoryUser implements Serializable {
* 1通过 2不通过
*/
private Integer ysFlag;
/**
* 验收人
*/
private String ysUser;
private String ysRemark;
private String spec;

View File

@ -510,6 +510,7 @@ public class ZtStoryFeedbackServiceImpl extends ServiceImpl<ZtStoryFeedbackMappe
if ("wait".equals(status)) {
ztStoryFeedback.setHandDate(new Date());
ztStoryFeedback.setStatus("doing");
ztStoryFeedback.setYsFlag(0);
this.baseMapper.updateById(ztStoryFeedback);
//添加action
actionService.addAction(ActionType.WTFK, ActionStatus.KSCL, ztStoryFeedback.getId(), ztStoryFeedback.getProduct() + "", null, null,

View File

@ -139,7 +139,7 @@
s.ps_date,
s.deliver_remark,
s.old_status,
s.ys_user,
pt.name productName from zt_story_user s LEFT JOIN zt_product pt on s.product = pt.id WHERE 1=1