You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
2 years ago
|
package com.ynxbd.common.bean;
|
||
|
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
/**
|
||
|
* @Author wsq
|
||
|
* @Date 2021/4/29 17:38
|
||
|
* @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
||
|
*/
|
||
|
@Setter
|
||
|
@Getter
|
||
|
@ToString
|
||
|
@NoArgsConstructor
|
||
|
public class StandardPrice {
|
||
|
// 序号
|
||
|
private String orderNum;
|
||
|
// 代码
|
||
|
private String code;
|
||
|
// 名称
|
||
|
private String name;
|
||
|
// 价格
|
||
|
private String price;
|
||
|
// 单位
|
||
|
private String unitName;
|
||
|
// 生产企业
|
||
|
private String productionEnterprises;
|
||
|
// 组套标识:{ 1:是,0:否 }
|
||
|
private String groupFlag;
|
||
|
// 类型
|
||
|
private String itemType;
|
||
|
// 财务科目代码
|
||
|
private String kmCode;
|
||
|
// 财务科目名称
|
||
|
private String kmName;
|
||
|
// 医保类别
|
||
|
private String yblbName;
|
||
|
// 合作医疗标志
|
||
|
private String hzylFlag;
|
||
|
// 合作医疗报销比例
|
||
|
private String hzylPercent;
|
||
|
}
|