fwq
2024-01-25 8c4d88f4d83186b352e3fd0d26f54a786015008e
提交 | 用户 | age
a09a07 1 package com.hz.his.dto.user;
A 2
3 import lombok.Data;
4
5 /**
6  * 用户关注项目记录
7  */
8 @Data
9 public class UserAttentionProductDto {
10
11     /**用户Id*/
12     private String userId;
13     /**公共类型(OrderItemConstants)*/
14     private String commonType;
15     /**公共标识*/
16     private String commonId;
17     /**公共名称*/
18     private String commonName;
19
20     /**请求参数*/
21     private String pageRoute;
22     /**请求参数*/
23     private String requestParameter;
24
25     public UserAttentionProductDto() {
26     }
27 }