cmg
2024-04-30 314a4b858417df3d0e97049c3bf36e91cdf228ee
提交 | 用户 | 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 }