Merge branch 'cc_20241219_license' into 'master'

Cc 20241219 license

See merge request hangzhou/java/custom_zxjp!36
This commit is contained in:
苏竹红
2024-12-24 10:03:13 +00:00
14 changed files with 275 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 licenseTypeId;
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;
}