2/25 优化1.0
parent
688a814d5f
commit
f45166c392
@ -0,0 +1,49 @@
|
|||||||
|
package com.glxp.mipsdl.client.axxyy;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlElementWrapper;
|
||||||
|
import javax.xml.bind.annotation.XmlRootElement;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author : zhuzhu
|
||||||
|
* @date : 2025/2/28 16:04
|
||||||
|
* @modyified By :
|
||||||
|
*/
|
||||||
|
|
||||||
|
@XmlRootElement(name = "root")
|
||||||
|
public class ProductVo<T> {
|
||||||
|
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
private String error;
|
||||||
|
private List<T> data;
|
||||||
|
|
||||||
|
@XmlElement(name = "code")
|
||||||
|
public String getCode() {
|
||||||
|
return code;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCode(String code) {
|
||||||
|
this.code = code;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlElement(name = "error")
|
||||||
|
public String getError() {
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setError(String error) {
|
||||||
|
this.error = error;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlElementWrapper(name = "data")
|
||||||
|
@XmlElement(name = "item") // 假设List中的元素由<item>标签包裹
|
||||||
|
public List<T> getData() {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setData(List<T> data) {
|
||||||
|
this.data = data;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,46 @@
|
|||||||
|
package com.glxp.mipsdl.entity.axxyy;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author : zhuzhu
|
||||||
|
* @date : 2025/2/28 16:21
|
||||||
|
* @modyified By :
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class PriceDict {
|
||||||
|
|
||||||
|
@XmlElement(name = "code")
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
|
||||||
|
@XmlElement(name = "name")
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
|
||||||
|
@XmlElement(name = "unit")
|
||||||
|
private String unit;
|
||||||
|
|
||||||
|
|
||||||
|
@XmlElement(name = "price")
|
||||||
|
private String price;
|
||||||
|
|
||||||
|
|
||||||
|
@XmlElement(name = "subject")
|
||||||
|
private String subject;
|
||||||
|
|
||||||
|
|
||||||
|
@XmlElement(name = "starttime")
|
||||||
|
private String startTime;
|
||||||
|
|
||||||
|
|
||||||
|
@XmlElement(name = "stoptime")
|
||||||
|
private String stopTime;
|
||||||
|
|
||||||
|
|
||||||
|
@XmlElement(name = "country_code")
|
||||||
|
private String countryCode;
|
||||||
|
}
|
Loading…
Reference in New Issue