Andru
2023-11-21 75cf1778b4e29dccb8495c35d9fb1d80a6f02f3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.hz.his.dto.consumables;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
/**
 * @author fwq
 * 耗材扩展
 * */
@Data
public class ConsumablesDto extends PageDto {
    /**更新时间*/
    private String editTime;
    /** 购买数量 */
    private Integer buyNum;
}