liujie
6 天以前 5b883298571421132edf68cab7a22ab16a1f0a6b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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("保养提醒Query")
public class TErpMaintenanceReminderQuery extends BasePage {
    @ApiModelProperty(value = "入库单号")
    private String warehouseNo;
 
    @ApiModelProperty(value = "药品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "类型id")
    private String typeId;
 
    @ApiModelProperty(value = "批次号")
    private String batchNumber;
 
    @ApiModelProperty(value = "状态 1=未维护 2=已维护")
    private Integer status;
}