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.
79 lines
1.2 KiB
Java
79 lines
1.2 KiB
Java
package com.glxp.mipsdl.entity.axxyy;
|
|
|
|
import lombok.Data;
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
|
|
/**
|
|
* @author : zhuzhu
|
|
* @date : 2025/2/28 16:21
|
|
* @modyified By :
|
|
*/
|
|
|
|
@Data
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
public class PriceDict {
|
|
|
|
|
|
/**
|
|
* 编码
|
|
*/
|
|
private String code;
|
|
|
|
/**
|
|
* 名称
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* 单位
|
|
*/
|
|
private String unit;
|
|
|
|
/**
|
|
* 价格
|
|
*/
|
|
private String price;
|
|
|
|
/**
|
|
* 规格
|
|
*/
|
|
private String spell;
|
|
|
|
private String valid;
|
|
|
|
private String sequence;
|
|
|
|
private String stdCode;
|
|
|
|
private String subject;
|
|
|
|
private String subjectName;
|
|
|
|
private String dispreceipt;
|
|
|
|
private String dispreceiptName;
|
|
|
|
private String resireceipt;
|
|
|
|
private String resireceiptName;
|
|
|
|
private String starttime;
|
|
|
|
private String stoptime;
|
|
|
|
private String modifytime;
|
|
|
|
private String modifyoperator;
|
|
|
|
private String itemConnotation;
|
|
|
|
private String exceptContent;
|
|
|
|
private String countryCode;
|
|
|
|
private String orgStdcode;
|
|
}
|