添加 开展活动接口

This commit is contained in:
2024-07-19 15:40:54 +08:00
parent aa1eb7411e
commit c46f65600f
7 changed files with 165 additions and 18 deletions

View File

@@ -3,6 +3,7 @@ package com.ai.da.mapper.primary;
import com.ai.da.common.config.mybatis.plus.CommonMapper;
import com.ai.da.mapper.primary.entity.Account;
import java.util.Date;
import java.util.List;
/**
@@ -29,4 +30,6 @@ public interface AccountMapper extends CommonMapper<Account> {
*/
// Account findById(String id);
void toVisitor(Long id, Date date);
}

View File

@@ -93,6 +93,7 @@ public class Account implements Serializable {
* 1 年付用户
* 2 月付用户
* 3 试用用户
* 4 参加活动获取30天有效期和6000个积分的用户
*/
private Integer systemUser;
}