调用医保接口增加日志
parent
38707176af
commit
489fc6a1f9
@ -0,0 +1,9 @@
|
||||
package com.glxp.mipsdl.dao.yb;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.glxp.mipsdl.entity.yb.YbUploadingLog;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface YbUploadingLogMapper extends BaseMapper<YbUploadingLog> {
|
||||
}
|
@ -0,0 +1,43 @@
|
||||
package com.glxp.mipsdl.entity.yb;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@TableName(value = "yb_uploading_log")
|
||||
public class YbUploadingLog {
|
||||
@TableId(value = "id", type = IdType.INPUT)
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 医保入参
|
||||
*/
|
||||
@TableField(value = "ybParam")
|
||||
private String ybParam;
|
||||
|
||||
/**
|
||||
* 医保返回
|
||||
*/
|
||||
@TableField(value = "ybReturn")
|
||||
private String ybReturn;
|
||||
|
||||
/**
|
||||
* 单据号
|
||||
*/
|
||||
@TableField(value = "billNo")
|
||||
private String billNo;
|
||||
/**
|
||||
* 医保接口号
|
||||
*/
|
||||
@TableField(value = "apiNo")
|
||||
private String apiNo;
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
@TableField(value = "updateTime")
|
||||
private Date updateTime;
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.glxp.mipsdl.dao.yb.YbUploadingLogMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.mipsdl.entity.yb.YbUploadingLog">
|
||||
<!--@mbg.generated-->
|
||||
<!--@Table yb_uploading_log-->
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="ybParam" jdbcType="LONGVARCHAR" property="ybparam" />
|
||||
<result column="ybReturn" jdbcType="LONGVARCHAR" property="ybreturn" />
|
||||
<result column="billNo" jdbcType="VARCHAR" property="billno" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updatetime" />
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, ybParam, ybReturn, billNo, updateTime
|
||||
</sql>
|
||||
</mapper>
|
Loading…
Reference in New Issue