chenjiahe
2022-08-31 3b4cc5f1188b9fc86078f3b2a2bd777a131b5400
提交 | 用户 | age
ddd881 1 package com.hz.his.dto.promotion;
F 2
3
4 import com.hz.his.dto.PageDto;
5
6 /**
7  * 促销查询参数
8  * @author fwq
9  */
10 public class PromotionQueryDto extends PageDto {
11
12     /**促销标识*/
13     private String promotionId;
14
15     public String getPromotionId() {
16         return promotionId;
17     }
18
19     public void setPromotionId(String promotionId) {
20         this.promotionId = promotionId;
21     }
22 }