fwq
2024-02-29 f9e94e1c87eb25f108c773312522c764d8dfd89f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.hz.his.dto.card;
 
 
import com.hz.his.dto.PageDto;
 
/**
 * 卡项查询参数
 * @author fwq
 */
public class CardQueryDto extends PageDto {
 
    /**卡项标识*/
    private String cardId;
 
    public String getCardId() {
        return cardId;
    }
 
    public void setCardId(String cardId) {
        this.cardId = cardId;
    }
}