feat(yb): 添加医保模拟实体和Mapper
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.healthlink.his.yb.mock.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import lombok.Data;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("yb_psn_info")
|
||||
public class YbPsnInfo {
|
||||
@TableId(type = IdType.ASSIGN_ID)
|
||||
private Long id;
|
||||
private String psnNo;
|
||||
private String psnName;
|
||||
private String sexCode;
|
||||
private String sexName;
|
||||
private String birthDate;
|
||||
private String idCard;
|
||||
private String insurType;
|
||||
private String insurArea;
|
||||
private String cardNo;
|
||||
private java.math.BigDecimal balance;
|
||||
private String status;
|
||||
private Date createTime;
|
||||
private Date updateTime;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.healthlink.his.yb.mock.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.healthlink.his.yb.mock.domain.YbPsnInfo;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface YbPsnInfoMapper extends BaseMapper<YbPsnInfo> {
|
||||
}
|
||||
Reference in New Issue
Block a user