New file |
| | |
| | | package com.ruoyi.system.query; |
| | | |
| | | import com.ruoyi.common.core.domain.BasePage; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @ApiModel(value = "erp诊所出库查询参数query") |
| | | public class TClinicOutboundQuery extends BasePage { |
| | | |
| | | @ApiModelProperty(value = "出库单号") |
| | | private String outboundNumber; |
| | | |
| | | @ApiModelProperty(value = "操作人") |
| | | private String userName; |
| | | |
| | | @ApiModelProperty(value = "出库时间 2020-02-02 - 2029-02-02") |
| | | private String time; |
| | | |
| | | @ApiModelProperty(value = " 1=报损 2=到期 3=失效 4=召回 5=其他 6=盘点出库 7=购买出库") |
| | | private Integer type; |
| | | |
| | | |
| | | } |