后端最新版本同步
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -0,0 +1,35 @@
|
||||
package com.openhis.web.ybmanage.dto;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
import javax.validation.constraints.NotEmpty;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class FinancialHand3201WebParam {
|
||||
|
||||
@NotEmpty
|
||||
private String clrType;// 险种类型
|
||||
@NotNull
|
||||
private BigDecimal medfeeSumamt;// 医疗费总额
|
||||
@NotNull
|
||||
private BigDecimal medSumfee;// 医保认可费用总额(0.00)
|
||||
@NotNull
|
||||
private BigDecimal fundAppySum;// 基金支付金额
|
||||
@NotNull
|
||||
private BigDecimal cashPayamt;// 现金金额
|
||||
@NotNull
|
||||
private BigDecimal acctPay;// 账户金额
|
||||
@NotNull
|
||||
private String begndate;// 开始时间
|
||||
@NotNull
|
||||
private String enddate;// 结束时间
|
||||
@NotEmpty
|
||||
private String clrOptins; // 必须是准确的6位编码
|
||||
@NotNull
|
||||
private String insutype;// 职工还是居民?
|
||||
@NotNull
|
||||
private String setlCnt;// 结算笔数
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Copyright ©2023 CJB-CNIT Team. All rights reserved
|
||||
*/
|
||||
package com.openhis.web.ybmanage.dto;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 医保5205接口请求参数
|
||||
*
|
||||
* @author SunJQ
|
||||
* @date 2025-09-22
|
||||
*/
|
||||
@Data
|
||||
public class Yb5205SpecialDiseaseWebParam {
|
||||
|
||||
/**
|
||||
* 患者id
|
||||
*/
|
||||
private Long patientId;
|
||||
|
||||
/**
|
||||
* 开始时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date begntime;
|
||||
|
||||
/**
|
||||
* 结束时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date endtime;
|
||||
}
|
||||
Reference in New Issue
Block a user