
5 changed files with 89 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||
package com.yxt.messagecenter.api.messageurgeList; |
|||
|
|||
import com.yxt.common.core.dto.Dto; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2023/9/13 |
|||
**/ |
|||
@Data |
|||
public class UrgeDto implements Dto { |
|||
private static final long serialVersionUID = 6869859199655790013L; |
|||
@ApiModelProperty("流程定义id") |
|||
private String proDefId; |
|||
@ApiModelProperty("流程实例id") |
|||
private String proInstId; |
|||
} |
@ -1,9 +1,25 @@ |
|||
package com.yxt.messagecenter.biz.messageurgeList; |
|||
|
|||
import com.yxt.common.core.result.ResultBean; |
|||
import com.yxt.messagecenter.api.messageurgeList.MessageUrgeListFeign; |
|||
import com.yxt.messagecenter.api.messageurgeList.UrgeDto; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2023/9/9 |
|||
**/ |
|||
public class MessageUrgeListRest { |
|||
@RestController |
|||
@RequestMapping("v1/MessageUrgeList") |
|||
public class MessageUrgeListRest implements MessageUrgeListFeign { |
|||
|
|||
@Autowired |
|||
private MessageUrgeListService messageUrgeListService; |
|||
@Override |
|||
public ResultBean manualReminder(UrgeDto dto) { |
|||
return messageUrgeListService.manualReminder(dto); |
|||
} |
|||
} |
|||
|
Loading…
Reference in new issue