feat:证照同步

This commit is contained in:
苏竹红
2024-12-20 16:22:10 +08:00
parent c561029776
commit 67c6a72163
14 changed files with 277 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
package com.cool.store.dto;
import lombok.Data;
import java.util.List;
/**
* @Author suzhuhong
* @Date 2024/12/20 15:16
* @Version 1.0
*/
@Data
public class LicenseDTO {
private String enterpriseId;
List<LicenseSyncInfoDTO> requests;
}

View File

@@ -0,0 +1,20 @@
package com.cool.store.dto;
import lombok.Data;
/**
* @Author suzhuhong
* @Date 2024/12/20 10:52
* @Version 1.0
*/
@Data
public class LicenseSyncDTO {
private Long shopId;
private String shopCode;
private String storeId;
}

View File

@@ -0,0 +1,25 @@
package com.cool.store.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @Author suzhuhong
* @Date 2024/12/20 10:52
* @Version 1.0
*/
@Data
public class LicenseSyncInfoDTO {
private String storeId;
private Integer licenseType;
private String picture;
private String expiryType;
private Long expiryBeginDate;
private Long expiryEndDate;
}

View File

@@ -73,5 +73,7 @@ public class LicenseTransactDO {
private Integer deleted;
@Column(name = "two_certificates_one")
private Integer twoCertificatesOne;
@Column(name = "sync_flag")
private Integer syncFlag;
}