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