fwq
2024-05-27 c65d74600cc7c9de52f2d5e814a1f4f4dd1dd2f2
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.promotion;
 
 
import com.hz.his.dto.PageDto;
 
/**
 * 促销查询参数
 * @author fwq
 */
public class PromotionQueryDto extends PageDto {
 
    /**促销标识*/
    private String promotionId;
 
    public String getPromotionId() {
        return promotionId;
    }
 
    public void setPromotionId(String promotionId) {
        this.promotionId = promotionId;
    }
}