Commit 5f2e956d by zhangxingmin

邮件发送记录

parent 2d6db1e5
......@@ -3,10 +3,18 @@ package com.yd.email.feign.request;
import com.yd.common.dto.PageDto;
import lombok.Data;
import javax.validation.constraints.NotBlank;
@Data
public class ApiEmailTaskRecipientsPageRequest extends PageDto {
/**
* 邮件任务唯一业务ID
*/
@NotBlank(message = "邮件任务唯一业务ID不能为空")
private String taskBizId;
/**
* 收件人邮箱
*/
private String receiveEmail;
......
......@@ -14,7 +14,7 @@
and etr.status = #{request.status}
</if>
and etr.is_deleted = 0
and etr.task_biz_id = #{request.taskBizId} and etr.is_deleted = 0
</where>
</select>
</mapper>
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