New file |
| | |
| | | package com.kidgrow.oprationcenter.vo; |
| | | |
| | | import com.baomidou.mybatisplus.extension.activerecord.Model; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | /** |
| | | * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br> |
| | | * @Description: <br> |
| | | * @Project: 运营中心<br> |
| | | * @CreateDate: Created in 2020-06-23 15:07:14 <br> |
| | | * @Author: <a href="411269194@kidgrow.com">houruijun</a> |
| | | * @version 1.0 |
| | | */ |
| | | @Data |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | public class ConsumptionRequest extends Model<ConsumptionRequest> { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 医院ID |
| | | */ |
| | | private Long hospitalId; |
| | | /** |
| | | * 科室ID |
| | | */ |
| | | private Long departmentId; |
| | | /** |
| | | * 医生ID |
| | | */ |
| | | private Long doctorId; |
| | | /** |
| | | * 调用方业务编号,光片编号 |
| | | */ |
| | | private String businessId; |
| | | /** |
| | | * 实际变动数量 |
| | | */ |
| | | private int consumptionCount; |
| | | } |