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.
28 lines
588 B
28 lines
588 B
package com.ynxbd.wx.wxfactory.bean;
|
|
|
|
import com.ynxbd.wx.wxfactory.WxFactory;
|
|
import lombok.Getter;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
/**
|
|
* @author 李进才
|
|
* @ClassName MedicalBill
|
|
* @Description TODO
|
|
* @date 2023/07/31 10:35:00
|
|
*/
|
|
|
|
@Setter
|
|
@Getter
|
|
@ToString(callSuper = true)
|
|
@NoArgsConstructor
|
|
public class MedicalBill extends WxFactory.ResponseCheck.ResultBase{
|
|
// 账单下载链接
|
|
private String downloadUrl;
|
|
// 校验码值
|
|
private String checksumValue;
|
|
// 校验算法
|
|
private String checksumType;
|
|
|
|
}
|
|
|