123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package com.caimei.modules.hehe.entity;
- import java.io.Serializable;
- /**
- * Description
- *
- * @author : plf
- * @date : 2021/4/23
- */
- public class cmHeHeUserActivity implements Serializable {
- private Integer id;
- private Integer userId; //用户id
- private Integer activityId; //活动id
- private Integer productId; //商品id
- private Integer sort; //排序值
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getUserId() {
- return userId;
- }
- public void setUserId(Integer userId) {
- this.userId = userId;
- }
- public Integer getActivityId() {
- return activityId;
- }
- public void setActivityId(Integer activityId) {
- this.activityId = activityId;
- }
- public Integer getProductId() {
- return productId;
- }
- public void setProductId(Integer productId) {
- this.productId = productId;
- }
- public Integer getSort() {
- return sort;
- }
- public void setSort(Integer sort) {
- this.sort = sort;
- }
- }
|