fwq
2022-07-21 ec3c2137e3e471ef962e18f0ee8f965ac21d0388
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.hz.phis.dt.consumables;
 
import com.hz.his.dto.PageDto;
 
/**耗材扩展*/
public class ConsumablesDt extends PageDto {
    /**更新时间*/
    private String editTime;
 
    public String getEditTime() {
        return editTime;
    }
 
    public void setEditTime(String editTime) {
        this.editTime = editTime;
    }
}