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