检查方法、检查部位后端接口、实体、数据库表基本完成。

This commit is contained in:
qk123
2025-11-26 10:31:30 +08:00
parent 0b98763c05
commit 10ec9f4c1b
12 changed files with 380 additions and 15 deletions

View File

@@ -22,26 +22,31 @@ import java.time.LocalDateTime;
public class CheckMethod {
private static final long serialVersionUID = 1L;
/** 检查方法ID */
/**
* 检查方法ID
*/
@TableId(type = IdType.AUTO)
private Long id;
/** 检查方法名称 */
private String name;
/* 检查类型 */
private String checkType;
/** 检查方法码 */
/* 方法码 */
private String code;
/** 检查方法类型 */
private String methodType;
/* 方法名称 */
private String name;
/** 检查类型ID */
private Long checkTypeId;
/* 套餐名称 */
private String packageName;
/** 序号 */
private Integer number;
/* 曝光次数 */
private Integer exposureNum;
/** 备注 */
/* 序号 */
private Integer orderNum;
/* 备注 */
private String remark;
/** 创建时间 */

View File

@@ -32,15 +32,27 @@ public class CheckPart {
/** 检查部位编码 */
private String code;
/** 部位分类 */
private String partCategory;
/** 检查部位检查类型 */
private String checkType;
/** 父部位ID */
private Long parentId;
/** 曝光次数 */
private Integer exposureNum;
/** 费用套餐 */
private String packageName;
/** 金额 */
private Double price;
/** 序号 */
private Integer number;
/** 服务范围 */
private String serviceScope;
/** 下级医技类型 */
private String subType;
/** 备注 */
private String remark;