通知第三方平台重构

This commit is contained in:
2024-04-22 11:10:17 +08:00
parent 8ff615f90d
commit 01319e7648
3 changed files with 65 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
package com.jsowell.thirdparty.common;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class NotificationDTO {
/**
* 站点id
*/
private String stationId;
/**
* 平台类型,非必传
* 不传表示所有平台
*/
private String platformType;
private String pileConnectorCode;
private String status;
private String orderCode;
}