加个普通水印、推送订单纠正、水印预览和下载

This commit is contained in:
2025-03-18 18:23:18 +08:00
parent 46f6532164
commit 26dc53ca6a
20 changed files with 408 additions and 188 deletions

View File

@@ -15,5 +15,4 @@ public class MemberSourceEntity {
private Integer isBuy;
private Long orderId;
private Integer isFree;
private String waterUrl;
}

View File

@@ -0,0 +1,12 @@
package com.ycwl.basic.model.pc.source.entity;
import lombok.Data;
@Data
public class SourceWatermarkEntity {
private Integer id;
private Long sourceId;
private Long faceId;
private String watermarkType;
private String watermarkUrl;
}