You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
718 B
Java
47 lines
718 B
Java
4 months ago
|
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;
|
||
|
}
|