fhx
2024-04-11 b2ad4b914ccaf0c22e382855d18d9bca64f016aa
提交 | 用户 | 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 }