【修改】 名称替换

This commit is contained in:
DESKTOP-932OMT8\REN
2025-05-21 17:28:26 +08:00
parent 3bd8a424ec
commit b5f18ba897
1212 changed files with 1262 additions and 1270 deletions

View File

@@ -5,7 +5,7 @@ import pc.exam.pp.module.member.api.address.dto.MemberAddressRespDTO;
/**
* 用户收件地址 API 接口
*
* @author 芋道源码
* @author 朋辰
*/
public interface MemberAddressApi {

View File

@@ -5,7 +5,7 @@ import lombok.Data;
/**
* 用户收件地址 Response DTO
*
* @author 芋道源码
* @author 朋辰
*/
@Data
public class MemberAddressRespDTO {

View File

@@ -5,7 +5,7 @@ import lombok.Data;
/**
* 用户信息 Response DTO
*
* @author 芋道源码
* @author 朋辰
*/
@Data
public class MemberConfigRespDTO {

View File

@@ -6,7 +6,7 @@ import lombok.Data;
/**
* 会员等级 Resp DTO
*
* @author 芋道源码
* @author 朋辰
*/
@Data
public class MemberLevelRespDTO {

View File

@@ -11,7 +11,7 @@ import static pc.exam.pp.framework.common.util.collection.CollectionUtils.conver
/**
* 会员用户的 API 接口
*
* @author 芋道源码
* @author 朋辰
*/
public interface MemberUserApi {

View File

@@ -8,7 +8,7 @@ import java.time.LocalDateTime;
/**
* 用户信息 Response DTO
*
* @author 芋道源码
* @author 朋辰
*/
@Data
public class MemberUserRespDTO {

View File

@@ -10,7 +10,7 @@ import java.util.Objects;
/**
* 会员积分的业务类型枚举
*
* @author 芋道源码
* @author 朋辰
*/
@AllArgsConstructor
@Getter

View File

@@ -11,7 +11,7 @@ import jakarta.annotation.Resource;
/**
* 用户收件地址 API 实现类
*
* @author 芋道源码
* @author 朋辰
*/
@Service
@Validated

View File

@@ -17,7 +17,7 @@ import static pc.exam.pp.module.member.enums.ErrorCodeConstants.USER_MOBILE_NOT_
/**
* 会员用户的 API 实现类
*
* @author 芋道源码
* @author 朋辰
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ Authorization: Bearer {{appToken}}
"mobile": "15601691300",
"areaId": "610632",
"postCode": "200000",
"detailAddress": "芋道源码 233 号 666 室",
"detailAddress": "朋辰 233 号 666 室",
"defaulted": true
}
@@ -25,7 +25,7 @@ Authorization: Bearer {{appToken}}
"mobile": "15601691300",
"areaId": "610632",
"postCode": "200000",
"detailAddress": "芋道源码 233 号 666 室",
"detailAddress": "朋辰 233 号 666 室",
"defaulted": false
}

View File

@@ -10,7 +10,7 @@ public class AppSocialUserRespVO {
@Schema(description = "社交用户的 openid", requiredMode = Schema.RequiredMode.REQUIRED, example = "IPRmJ0wvBptiPIlGEZiPewGwiEiE")
private String openid;
@Schema(description = "社交用户的昵称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道源码")
@Schema(description = "社交用户的昵称", requiredMode = Schema.RequiredMode.REQUIRED, example = "朋辰")
private String nickname;
@Schema(description = "社交用户的头像", requiredMode = Schema.RequiredMode.REQUIRED, example = "https://www.iocoder.cn/1.png")

View File

@@ -17,7 +17,7 @@ import java.util.List;
/**
* 用户收件地址 Convert
*
* @author 芋道源码
* @author 朋辰
*/
@Mapper
public interface AddressConvert {

View File

@@ -22,7 +22,7 @@ import static pc.exam.pp.framework.common.util.collection.CollectionUtils.conver
/**
* 签到记录 Convert
*
* @author 芋道源码
* @author 朋辰
*/
@Mapper
public interface MemberSignInRecordConvert {

View File

@@ -13,7 +13,7 @@ import java.util.List;
/**
* 会员标签 Convert
*
* @author 芋道源码
* @author 朋辰
*/
@Mapper
public interface MemberTagConvert {

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* 用户收件地址 DO
*
* @author 芋道源码
* @author 朋辰
*/
@TableName("member_address")
@KeySequence("member_address_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* 签到记录 DO
*
* @author 芋道源码
* @author 朋辰
*/
@TableName("member_sign_in_record")
@KeySequence("member_sign_in_record_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* 会员标签 DO
*
* @author 芋道源码
* @author 朋辰
*/
@TableName("member_tag")
@KeySequence("member_tag_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -23,7 +23,7 @@ import java.util.List;
*
* uk_mobile 索引:基于 {@link #mobile} 字段
*
* @author 芋道源码
* @author 朋辰
*/
@TableName(value = "member_user", autoResultMap = true)
@KeySequence("member_user_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -15,7 +15,7 @@ import java.util.Set;
/**
* 签到记录 Mapper
*
* @author 芋道源码
* @author 朋辰
*/
@Mapper
public interface MemberSignInRecordMapper extends BaseMapperX<MemberSignInRecordDO> {

View File

@@ -10,7 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* 会员标签 Mapper
*
* @author 芋道源码
* @author 朋辰
*/
@Mapper
public interface MemberTagMapper extends BaseMapperX<MemberTagDO> {

View File

@@ -17,7 +17,7 @@ import java.util.stream.Collectors;
/**
* 会员 User Mapper
*
* @author 芋道源码
* @author 朋辰
*/
@Mapper
public interface MemberUserMapper extends BaseMapperX<MemberUserDO> {

View File

@@ -1,6 +1,6 @@
/**
* 属于 member 模块的 framework 封装
*
* @author 芋道源码
* @author 朋辰
*/
package pc.exam.pp.module.member.framework;

View File

@@ -8,7 +8,7 @@ import org.springframework.context.annotation.Configuration;
/**
* member 模块的 web 组件的 Configuration
*
* @author 芋道源码
* @author 朋辰
*/
@Configuration(proxyBeanMethods = false)
public class MemberWebConfiguration {

View File

@@ -10,7 +10,7 @@ import java.util.List;
/**
* 用户收件地址 Service 接口
*
* @author 芋道源码
* @author 朋辰
*/
public interface AddressService {

View File

@@ -19,7 +19,7 @@ import static pc.exam.pp.module.member.enums.ErrorCodeConstants.ADDRESS_NOT_EXIS
/**
* 用户收件地址 Service 实现类
*
* @author 芋道源码
* @author 朋辰
*/
@Service
@Validated

View File

@@ -9,7 +9,7 @@ import jakarta.validation.Valid;
*
* 提供用户的账号密码登录、token 的校验等认证相关的功能
*
* @author 芋道源码
* @author 朋辰
*/
public interface MemberAuthService {

View File

@@ -42,7 +42,7 @@ import static pc.exam.pp.module.member.enums.ErrorCodeConstants.*;
/**
* 会员的认证 Service 接口
*
* @author 芋道源码
* @author 朋辰
*/
@Service
@Slf4j

View File

@@ -9,7 +9,7 @@ import pc.exam.pp.module.member.dal.dataobject.signin.MemberSignInRecordDO;
/**
* 签到记录 Service 接口
*
* @author 芋道源码
* @author 朋辰
*/
public interface MemberSignInRecordService {

View File

@@ -35,7 +35,7 @@ import static pc.exam.pp.module.member.enums.ErrorCodeConstants.SIGN_IN_RECORD_T
/**
* 签到记录 Service 实现类
*
* @author 芋道源码
* @author 朋辰
*/
@Service
@Validated

View File

@@ -13,7 +13,7 @@ import java.util.List;
/**
* 会员标签 Service 接口
*
* @author 芋道源码
* @author 朋辰
*/
public interface MemberTagService {

View File

@@ -24,7 +24,7 @@ import static pc.exam.pp.module.member.enums.ErrorCodeConstants.*;
/**
* 会员标签 Service 实现类
*
* @author 芋道源码
* @author 朋辰
*/
@Service
@Validated

View File

@@ -15,7 +15,7 @@ import java.util.List;
/**
* 会员用户 Service 接口
*
* @author 芋道源码
* @author 朋辰
*/
public interface MemberUserService {

View File

@@ -42,7 +42,7 @@ import static pc.exam.pp.module.member.enums.ErrorCodeConstants.*;
/**
* 会员 User Service 实现类
*
* @author 芋道源码
* @author 朋辰
*/
@Service
@Valid

View File

@@ -21,7 +21,7 @@ import static org.junit.jupiter.api.Assertions.assertNull;
/**
* {@link AddressServiceImpl} 的单元测试类
*
* @author 芋道源码
* @author 朋辰
*/
@Import(AddressServiceImpl.class)
public class MemberAddressServiceImplTest extends BaseDbUnitTest {

View File

@@ -28,7 +28,7 @@ import static org.junit.jupiter.api.Assertions.*;
/**
* {@link MemberTagServiceImpl} 的单元测试类
*
* @author 芋道源码
* @author 朋辰
*/
@Import(MemberTagServiceImpl.class)
public class MemberTagServiceImplTest extends BaseDbUnitTest {