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.
36 lines
1.1 KiB
36 lines
1.1 KiB
package com.ynxbd.common.bean;
|
|
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
/**
|
|
* 处方详细
|
|
*
|
|
* @Author wsq
|
|
* @Date 2020/11/6 9:57
|
|
* @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
|
*/
|
|
@Setter
|
|
@Getter
|
|
@ToString
|
|
@NoArgsConstructor
|
|
public class HisRecipeItem {
|
|
private String itemId; // 项目编码
|
|
private String itemName; // 项目名称
|
|
private String itemType; // 类别
|
|
private String specs; // 规格
|
|
private String unit; // 单位
|
|
private BigDecimal price; // 价格
|
|
private String quantity; // 数量
|
|
private String fjjfApplyNum; // 子处方处方号标识(附加缴费)(处方号带有该字符串的就是这个处方的附加缴费处方)
|
|
|
|
|
|
// 趣医专用----------------------------------------
|
|
private String count_qy; // 付数(趣医专用)
|
|
private String quantity_qy; // 数量(趣医专用)
|
|
private String price_qy; // 价格(趣医专用)
|
|
}
|
|
|