12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.diagbot.vo;
- import lombok.Data;
- import java.io.Serializable;
- ;
- /**
- * <p>
- * 手术表
- * </p>
- *
- * @author kwz
- * @since 2021-05-11
- */
- @Data
- public class KlOperationVO implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 术语概念id
- */
- private Long conceptId;
- /**
- * 手术级别(0,1,2,3,4)
- */
- private Integer operationLevel;
- /**
- * 手术操作码
- */
- private String operationCode;
- /**
- * 备注
- */
- private String remark;
- }
|