增加消息板块

This commit is contained in:
2025-02-24 15:03:01 +08:00
parent 5bfb5fc706
commit a4bc3fc406
18 changed files with 156 additions and 29 deletions

View File

@ -34,7 +34,7 @@ public class WgzAttendance implements Serializable {
/** 自增ID */
@ApiModelProperty("自增ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 项目ID */

View File

@ -33,7 +33,7 @@ public class WgzDailyClock implements Serializable {
/** 自增ID */
@ApiModelProperty("自增ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 项目ID */

View File

@ -33,7 +33,7 @@ public class WgzLeave implements Serializable {
/** 主键自增ID */
@ApiModelProperty("主键自增ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 项目ID */

View File

@ -33,7 +33,7 @@ public class WgzMessage implements Serializable {
/** 主键自增ID */
@ApiModelProperty("主键自增ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 发送类型0系统 1务工者 2包工头 */

View File

@ -1,9 +1,6 @@
package com.ruoyi.wgz.domain;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.*;
import com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ -33,7 +30,7 @@ public class WgzPayCalculation implements Serializable {
/** 主键自增ID */
@ApiModelProperty("主键自增ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 任务ID */

View File

@ -33,7 +33,7 @@ public class WgzPayCalculationFiles implements Serializable {
/** 主键自增ID */
@ApiModelProperty("主键自增ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 工资结算主键自增ID */

View File

@ -33,7 +33,7 @@ public class WgzQuestionBank implements Serializable {
/** 主键ID */
@ApiModelProperty("主键ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 题目类别(外键关联到类别表) */

View File

@ -33,7 +33,7 @@ public class WgzQuestionCategory implements Serializable {
/** 主键ID */
@ApiModelProperty("主键ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 题库类别 */

View File

@ -33,7 +33,7 @@ public class WgzQuestionSave implements Serializable {
/** 主键ID */
@ApiModelProperty("主键ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 务工者唯一标识 */

View File

@ -33,7 +33,7 @@ public class WgzQuestionsConfiguration implements Serializable {
/** 主键ID */
@ApiModelProperty("主键ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 单选题(单位/道) */

View File

@ -33,7 +33,7 @@ public class WgzReissueacard implements Serializable {
/** 主键自增ID */
@ApiModelProperty("主键自增ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 项目ID */

View File

@ -1,9 +1,6 @@
package com.ruoyi.wgz.domain;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.*;
import com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ -31,7 +28,7 @@ public class WgzScoreRecord implements Serializable {
/** 主键ID */
@ApiModelProperty("主键ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/** 招工ID */

View File

@ -28,7 +28,7 @@ public class WgzUser implements Serializable {
/** 主键ID */
@ApiModelProperty("主键ID")
@TableId(value = "id")
@TableId(value = "id", type = IdType.AUTO)
private String id;
/** 唯一标识 */

View File

@ -52,4 +52,16 @@ public interface IWgzMessageService extends IServicePlus<WgzMessage> {
* @return
*/
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
/**
* LC-APP相关
* =================================================================================================================
* =================================================================================================================
* =================================================================================================================
*/
/**
* 发送消息
*/
Boolean sendAMessage(WgzMessage bo);
}

View File

@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.ruoyi.common.utils.PageUtils;
import com.ruoyi.common.core.page.PagePlus;
import com.ruoyi.common.core.page.TableDataInfo;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import com.ruoyi.common.core.mybatisplus.core.ServicePlusImpl;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
@ -28,6 +29,8 @@ import java.util.Collection;
@Service
public class WgzMessageServiceImpl extends ServicePlusImpl<WgzMessageMapper, WgzMessage> implements IWgzMessageService {
@Override
public WgzMessage queryById(Long id){
return getById(id);
@ -91,4 +94,16 @@ public class WgzMessageServiceImpl extends ServicePlusImpl<WgzMessageMapper, Wgz
}
return removeByIds(ids);
}
/**
* LC-APP相关
* =================================================================================================================
* =================================================================================================================
* =================================================================================================================
*/
@Override
public Boolean sendAMessage(WgzMessage bo) {
return save(bo);
}
}