This commit is contained in:
齐天大圣 2024-04-09 09:37:17 +08:00
parent 15d263d203
commit 62fec8eec4
4 changed files with 87 additions and 0 deletions

View File

@ -0,0 +1,37 @@
package com.fuint.business.marketingActivity.activeConsumption.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import lombok.Data;
import java.util.Date;
/**
* 消费有礼记录表(ActiveConsumptionRecord)表实体类
*
* @author makejava
* @since 2024-04-07 17:16:23
*/
@SuppressWarnings("serial")
@Data
public class ActiveConsumptionRecord extends Model<ActiveConsumptionRecord> {
//主键id
@TableId(type = IdType.AUTO)
private Integer id;
//活动id
private Integer activeConsumptionId;
//用户id
private Integer userId;
//店铺id
private Integer storeId;
//创建者
private String createBy;
//创建时间
private Date createTime;
//更新者
private String updateBy;
//更新时间
private Date updateTime;
}

View File

@ -0,0 +1,15 @@
package com.fuint.business.marketingActivity.activeConsumption.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.fuint.business.marketingActivity.activeConsumption.entity.ActiveConsumptionRecord;
/**
* 消费有礼记录表(ActiveConsumptionRecord)表数据库访问层
*
* @author makejava
* @since 2024-04-07 17:16:23
*/
public interface ActiveConsumptionRecordMapper extends BaseMapper<ActiveConsumptionRecord> {
}

View File

@ -0,0 +1,15 @@
package com.fuint.business.marketingActivity.activeConsumption.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.fuint.business.marketingActivity.activeConsumption.entity.ActiveConsumptionRecord;
/**
* 消费有礼记录表(ActiveConsumptionRecord)表服务接口
*
* @author makejava
* @since 2024-04-07 17:16:23
*/
public interface ActiveConsumptionRecordService extends IService<ActiveConsumptionRecord> {
}

View File

@ -0,0 +1,20 @@
package com.fuint.business.marketingActivity.activeConsumption.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.fuint.business.marketingActivity.activeConsumption.entity.ActiveConsumptionRecord;
import com.fuint.business.marketingActivity.activeConsumption.mapper.ActiveConsumptionRecordMapper;
import com.fuint.business.marketingActivity.activeConsumption.service.ActiveConsumptionRecordService;
import org.springframework.stereotype.Service;
/**
* 消费有礼记录表(ActiveConsumptionRecord)表服务实现类
*
* @author makejava
* @since 2024-04-07 17:16:23
*/
@Service("activeConsumptionRecordService")
public class ActiveConsumptionRecordServiceImpl extends ServiceImpl<ActiveConsumptionRecordMapper, ActiveConsumptionRecord> implements ActiveConsumptionRecordService {
}