GrouponSelfTake.java 822 B

123456789101112131415161718192021222324252627282930313233343536
  1. package org.springblade.modules.groupon.entity;
  2. import org.springblade.common.base.BaseEntity;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import io.swagger.annotations.ApiModel;
  7. import io.swagger.annotations.ApiModelProperty;
  8. /**
  9. * 团购自提点关联表实体类
  10. *
  11. * @author zzyd
  12. * @since 2023-06-02
  13. */
  14. @Data
  15. @TableName("t_groupon_self_take")
  16. @EqualsAndHashCode(callSuper = true)
  17. @ApiModel(value = "GrouponSelfTake对象", description = "团购自提点关联表")
  18. public class GrouponSelfTake extends BaseEntity {
  19. private static final long serialVersionUID = 1L;
  20. /**
  21. * 团购id
  22. */
  23. @ApiModelProperty(value = "团购id")
  24. private Long grouponId;
  25. /**
  26. * 自提点id
  27. */
  28. @ApiModelProperty(value = "自提点id")
  29. private Long selfTakeId;
  30. }