This commit is contained in:
xyc 2025-04-25 14:19:26 +08:00
parent 004696ef2d
commit e99ee0197f
2 changed files with 4 additions and 1 deletions

View File

@ -37,6 +37,9 @@ public class BusiNoticeQuery {
//审核备注
private String approvalRemark;
private String bloggerTypes;
/** 是否急招0 否 | 1是 */
private String isUrgent;
private String isPlatformFree;
/** 查询条件 */
private JSONObject params =new JSONObject();
}

View File

@ -100,7 +100,7 @@ public class BusiNoticeServiceImpl extends ServiceImpl<BusiNoticeMapper,BusiNoti
* @param data 通告对象
*/
@Override
@Transactional
@Transactional(rollbackFor = Exception.class)
public void saveVo(BusiNotice data) throws Exception {
//获取当前登录用户
data.setUserId(SecurityUtils.getUserId());