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.
|
|
|
|
package com.glxp.mipsdl.entity.ctqyy;
|
|
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class PriceClassEntity {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 价表科目码
|
|
|
|
|
*/
|
|
|
|
|
private String classCode;
|
|
|
|
|
/**
|
|
|
|
|
* 物资名称
|
|
|
|
|
*/
|
|
|
|
|
private String className;
|
|
|
|
|
/**
|
|
|
|
|
* 高值耗材标志
|
|
|
|
|
* 1高值,0低值
|
|
|
|
|
*/
|
|
|
|
|
private String remark;
|
|
|
|
|
}
|