Commit ab726e04 authored by fangxinjiang's avatar fangxinjiang

消息提醒

parent 67fc56d6
...@@ -28,15 +28,16 @@ import lombok.Data; ...@@ -28,15 +28,16 @@ import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length; import org.hibernate.validator.constraints.Length;
import java.time.LocalDateTime;
/** /**
* @author fxj * @author fxj
* @date 2023-06-01 10:41:25 * @date 2023-06-01 10:41:25
*/ */
@Data @Data
@TableName("msg_info") @TableName("msg_info")
@EqualsAndHashCode(callSuper = true)
@Schema(description = "EKP 消息提醒") @Schema(description = "EKP 消息提醒")
public class MsgInfo extends BaseEntity { public class MsgInfo {
/** /**
* id * id
...@@ -95,4 +96,6 @@ public class MsgInfo extends BaseEntity { ...@@ -95,4 +96,6 @@ public class MsgInfo extends BaseEntity {
@Schema(description = "提醒人") @Schema(description = "提醒人")
private String alertUser; private String alertUser;
private LocalDateTime createTime;
} }
...@@ -10,13 +10,10 @@ import org.springframework.stereotype.Component; ...@@ -10,13 +10,10 @@ import org.springframework.stereotype.Component;
* @Description * @Description
* @Version 1.0 * @Version 1.0
*/ */
@Component
@PropertySource("classpath:application.yml")
@ConfigurationProperties(value = "ekp", ignoreInvalidFields = false)
public interface MesConstants { public interface MesConstants {
/** /**
* 項目订单URL * 項目订单URL
**/ **/
String orderUrl =""; String orderUrl ="http://36.7.147.19:28080/sys/modeling/main/modelingAppView.do?method=modelView&listviewId=185943766d6e9ff50d8fea1414eaf460&fdId=";
} }
...@@ -84,7 +84,7 @@ public class MsgInfoServiceImpl extends ServiceImpl<MsgInfoMapper, MsgInfo> impl ...@@ -84,7 +84,7 @@ public class MsgInfoServiceImpl extends ServiceImpl<MsgInfoMapper, MsgInfo> impl
if (Common.isNotNull(save)){ if (Common.isNotNull(save)){
save.setCreateTime(LocalDateTime.now()); save.setCreateTime(LocalDateTime.now());
save.setUrl(MesConstants.orderUrl+vo.getOrderId()); save.setUrl(MesConstants.orderUrl+vo.getOrderId());
save.setUrl(vo.getAlertUser()); save.setAlertUser(vo.getAlertUser());
baseMapper.insert(save); baseMapper.insert(save);
log.error(JSON.toJSONString(save)); log.error(JSON.toJSONString(save));
} }
...@@ -96,7 +96,7 @@ public class MsgInfoServiceImpl extends ServiceImpl<MsgInfoMapper, MsgInfo> impl ...@@ -96,7 +96,7 @@ public class MsgInfoServiceImpl extends ServiceImpl<MsgInfoMapper, MsgInfo> impl
save.setCreateTime(LocalDateTime.now()); save.setCreateTime(LocalDateTime.now());
save.setUrl(MesConstants.orderUrl+save.getOrderId()); save.setUrl(MesConstants.orderUrl+save.getOrderId());
save.setAlertType(CommonConstants.TWO_STRING); save.setAlertType(CommonConstants.TWO_STRING);
save.setUrl(vo.getAlertUser()); save.setAlertUser(vo.getAlertUser());
baseMapper.insert(save); baseMapper.insert(save);
log.error(JSON.toJSONString(save)); log.error(JSON.toJSONString(save));
} }
......
...@@ -64,6 +64,3 @@ springdoc: ...@@ -64,6 +64,3 @@ springdoc:
- group: mail - group: mail
#按包路径匹配 #按包路径匹配
packagesToScan: com.yifu.cloud.plus.v1.msg.controller packagesToScan: com.yifu.cloud.plus.v1.msg.controller
ekp:
orderUrl: http://36.7.147.19:28080/sys/modeling/main/modelingAppView.do?method=modelView&listviewId=185943766d6e9ff50d8fea1414eaf460&fdId=
\ No newline at end of file
...@@ -93,10 +93,10 @@ ...@@ -93,10 +93,10 @@
<select id="getMsgByOrderId" resultMap="msgInfoMap"> <select id="getMsgByOrderId" resultMap="msgInfoMap">
SELECT SELECT
p.fd_name alertUser, p.fd_name ALERT_USER,
a.fd_3ac901c5184274 orderNo, a.fd_3ac901c5184274 ORDER_NO,
a.fd_id orderId, a.fd_id ORDER_ID,
'0' as alertType '0' as ALERT_TYPE
FROM FROM
ekp_ea33075576149bb8a4f5 a ekp_ea33075576149bb8a4f5 a
LEFT JOIN sys_org_element p on a.fd_3b0aff6781fa86 = p.fd_id LEFT JOIN sys_org_element p on a.fd_3b0aff6781fa86 = p.fd_id
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment