|
@@ -0,0 +1,21 @@
|
|
|
+package com.kcim.web.reponse;
|
|
|
+
|
|
|
+import com.kcim.vo.CostProfitRedirectAliasVo;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @program: CostAccount
|
|
|
+ * @description:
|
|
|
+ * @author: Wang.YS
|
|
|
+ * @create: 2024-09-12 16:21
|
|
|
+ **/
|
|
|
+@Data
|
|
|
+public class CostProfitRedirectResponse {
|
|
|
+ private String responseCode;
|
|
|
+
|
|
|
+ private String responseName;
|
|
|
+
|
|
|
+ private List<CostProfitRedirectAliasVo> dataList;
|
|
|
+}
|