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.
50 lines
1.2 KiB
50 lines
1.2 KiB
package com.ynxbd.common.bean.pay;
|
|
|
|
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
|
|
/**
|
|
* 处方支付
|
|
*
|
|
* @Author wsq
|
|
* @Date 2020/11/12 10:24
|
|
* @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
|
*/
|
|
@Setter
|
|
@Getter
|
|
@ToString(callSuper = true)
|
|
@NoArgsConstructor
|
|
public class Recipe extends Order implements Serializable {
|
|
private static final long serialVersionUID = 2022083010170001L;
|
|
// 处方id
|
|
private String recipeId;
|
|
// 处方金额
|
|
private BigDecimal recipeFee;
|
|
// 处方类型(1:处方单,2:申请单, null其他)待修正
|
|
private String recipeType;
|
|
// 执行科室编码
|
|
private String deptCode;
|
|
// 执行科室名称
|
|
private String deptName;
|
|
// 开单科室编码
|
|
private String reqDeptCode;
|
|
// 开单科室名称
|
|
private String reqDeptName;
|
|
// 院区
|
|
private String hospitalArea;
|
|
// 发药机
|
|
private String drugInfo;
|
|
// 处方json(医保整体支付)
|
|
private String recipeJson;
|
|
// 预结算ID
|
|
private String feeId;
|
|
// 预结算信息
|
|
private String feeInfo;
|
|
|
|
}
|
|
|