TASK:1、印花允许修改并保存

BUGFIX: 1、批量生成有的类型没有任务开始执行时间,任务结束时间有误
This commit is contained in:
2025-07-10 17:50:31 +08:00
parent 766e75f2ed
commit daa88889d0
5 changed files with 132 additions and 36 deletions

View File

@@ -84,4 +84,17 @@ public class Library implements Serializable {
private Date updateDate;
// private Integer isCopy;
public Library() {
}
public Library(Long accountId, String level1Type, String level2Type, String level3Type, String url, String md5, Date createDate) {
this.accountId = accountId;
this.level1Type = level1Type;
this.level2Type = level2Type;
this.level3Type = level3Type;
this.url = url;
this.md5 = md5;
this.createDate = createDate;
}
}