fwq
2024-05-01 623afb6fbb8ce6adebf237e7b670d9f4f339184d
提交 | 用户 | 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 }