feat(doctorstation): 检验申请单列表添加申请ID字段

- DTO添加applicationId(自增主键)字段
- Mapper返回类型从实体类改为DTO
- 前端表格显示申请ID替代行号
- 调整UI布局和分页器样式
This commit is contained in:
wangjian963
2026-04-02 17:59:21 +08:00
parent ced931a280
commit b747f80507
6 changed files with 182 additions and 121 deletions

View File

@@ -24,9 +24,14 @@ import java.util.Date;
public class InspectionLabApply extends HisBaseEntity {
/**
* 主键ID,申请单编号
* 主键ID(自增)
*/
@TableId(type = IdType.AUTO)
@JsonSerialize(using = ToStringSerializer.class)
private Long id;
/**
* 申请单编号
*/
@TableId(type = IdType.NONE)
private String applyNo;
/**
* 患者主索引