Commit 8961b79c by pengshun

feat: add file url to policy notification

parent 5712f1e9
No preview for this file type
No preview for this file type
......@@ -21,6 +21,9 @@ public class AiAgentPolicyNotifyCreateReqVO {
@Schema(description = "政策原文链接", example = "https://example.com/policy/123")
private String policySourceUrl;
@Schema(description = "导出PDF文件链接", example = "https://example.com/policy/123")
private String fileUrl;
@Schema(description = "校验时间", example = "1757376000000")
private LocalDateTime checkTime;
......
......@@ -30,6 +30,9 @@ public class AiAgentPolicyNotifyRespVO {
@Schema(description = "政策原文链接", example = "https://example.com/policy/123")
private String policySourceUrl;
@Schema(description = "导出PDF文件链接", example = "https://example.com/policy/123")
private String fileUrl;
@Schema(description = "详情", example = "详细内容...")
private String details;
......
......@@ -63,6 +63,8 @@ public class AiAgentPolicyNotifyDO extends BaseDO {
*/
private String policySourceUrl;
private String fileUrl;
/**
* 详情
*/
......
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 sign in to comment