1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.kidgrow.oprationcenter.vo;
|
| import com.kidgrow.oprationcenter.model.ProductOrderDetail;
| import lombok.Data;
|
| @Data
| public class ProductOrderDetailVo extends ProductOrderDetail {
| private String hospitalName;
| private Long hospitalId;
| private String departmentName;
| private Long departmentId;
| /**
| * 使用状态
| */
| private String useType;
| }
|
|