update 第三方平台接口

This commit is contained in:
Lemon
2023-10-31 14:31:42 +08:00
parent babcc5cedd
commit f250ff3ca1
8 changed files with 304 additions and 13 deletions

View File

@@ -0,0 +1,12 @@
package com.jsowell.thirdparty.yongchengboche.dto;
import com.jsowell.thirdparty.zhongdianlian.dto.ZDLGetTokenDTO;
/**
* TODO
*
* @author Lemon
* @Date 2023/10/30 15:49:51
*/
public class YCBCGetTokenDTO extends ZDLGetTokenDTO {
}

View File

@@ -0,0 +1,18 @@
package com.jsowell.thirdparty.yongchengboche.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.jsowell.thirdparty.lianlian.dto.CommonParamsDTO;
import lombok.Data;
/**
* 甬城泊车通用请求参数DTO
*
* @author Lemon
* @Date 2023/10/30 15:53:35
*/
@Data
public class YCCommonParamsDTO extends CommonParamsDTO {
@JsonProperty(value = "AccessName")
private String accessName;
}