feat(doctorstation): 检验申请单列表添加申请ID字段
- DTO添加applicationId(自增主键)字段 - Mapper返回类型从实体类改为DTO - 前端表格显示申请ID替代行号 - 调整UI布局和分页器样式
This commit is contained in:
@@ -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;
|
||||
/**
|
||||
* 患者主索引
|
||||
|
||||
Reference in New Issue
Block a user