fix: 修正 @author 为 pangu

按照项目规范,所有代码的作者统一使用 pangu
This commit is contained in:
神码-方晓辉 2026-02-02 15:59:52 +08:00
parent aa5d5b125e
commit 38eba2812a
50 changed files with 50 additions and 50 deletions

View File

@ -1,6 +1,6 @@
-- ============================================================ -- ============================================================
-- 盘古用户平台 - 业务菜单数据(适配 RuoYi-Vue-Plus 5.x -- 盘古用户平台 - 业务菜单数据(适配 RuoYi-Vue-Plus 5.x
-- 作者:湖北新华业务中台研发团队 -- 作者:pangu
-- 创建时间2026-02-02 -- 创建时间2026-02-02
-- ============================================================ -- ============================================================

View File

@ -1,6 +1,6 @@
-- ============================================================ -- ============================================================
-- 盘古用户平台 - 业务模块建表脚本(适配 RuoYi-Vue-Plus 5.x -- 盘古用户平台 - 业务模块建表脚本(适配 RuoYi-Vue-Plus 5.x
-- 作者:湖北新华业务中台研发团队 -- 作者:pangu
-- 创建时间2026-02-02 -- 创建时间2026-02-02
-- ============================================================ -- ============================================================

View File

@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.*;
/** /**
* 第三方应用管理 * 第三方应用管理
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -10,7 +10,7 @@ import java.io.Serializable;
/** /**
* API接口字典表 * API接口字典表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@TableName("pg_api_dict") @TableName("pg_api_dict")

View File

@ -11,7 +11,7 @@ import java.util.Date;
/** /**
* 应用API授权表 * 应用API授权表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@TableName("pg_app_api") @TableName("pg_app_api")

View File

@ -11,7 +11,7 @@ import org.dromara.common.mybatis.core.domain.BaseEntity;
/** /**
* 第三方应用表 * 第三方应用表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.application.domain.PgApiDict;
/** /**
* API接口字典 Mapper 接口 * API接口字典 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgApiDictMapper extends BaseMapperPlus<PgApiDict, PgApiDict> { public interface PgApiDictMapper extends BaseMapperPlus<PgApiDict, PgApiDict> {
} }

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.application.domain.PgAppApi;
/** /**
* 应用API授权 Mapper 接口 * 应用API授权 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgAppApiMapper extends BaseMapperPlus<PgAppApi, PgAppApi> { public interface PgAppApiMapper extends BaseMapperPlus<PgAppApi, PgAppApi> {
} }

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.application.domain.PgApplication;
/** /**
* 第三方应用 Mapper 接口 * 第三方应用 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgApplicationMapper extends BaseMapperPlus<PgApplication, PgApplication> { public interface PgApplicationMapper extends BaseMapperPlus<PgApplication, PgApplication> {
} }

View File

@ -9,7 +9,7 @@ import java.util.List;
/** /**
* 第三方应用 Service 接口 * 第三方应用 Service 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface IPgApplicationService { public interface IPgApplicationService {
TableDataInfo<PgApplication> selectPageList(PgApplication app, PageQuery pageQuery); TableDataInfo<PgApplication> selectPageList(PgApplication app, PageQuery pageQuery);

View File

@ -17,7 +17,7 @@ import java.util.List;
/** /**
* 第三方应用 Service 实现 * 第三方应用 Service 实现
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
@Service @Service

View File

@ -18,7 +18,7 @@ import java.util.List;
/** /**
* 班级管理 * 班级管理
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -18,7 +18,7 @@ import java.util.List;
/** /**
* 年级管理 * 年级管理
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -16,7 +16,7 @@ import java.util.List;
/** /**
* 区域管理 * 区域管理
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -18,7 +18,7 @@ import java.util.List;
/** /**
* 学科管理 * 学科管理
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -11,7 +11,7 @@ import org.dromara.common.mybatis.core.domain.BaseEntity;
/** /**
* 班级字典表 * 班级字典表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -11,7 +11,7 @@ import org.dromara.common.mybatis.core.domain.BaseEntity;
/** /**
* 年级字典表 * 年级字典表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -11,7 +11,7 @@ import org.dromara.common.mybatis.core.domain.BaseEntity;
/** /**
* 区域表 * 区域表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -11,7 +11,7 @@ import org.dromara.common.mybatis.core.domain.BaseEntity;
/** /**
* 学科表 * 学科表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.base.domain.PgClass;
/** /**
* 班级 Mapper 接口 * 班级 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgClassMapper extends BaseMapperPlus<PgClass, PgClass> { public interface PgClassMapper extends BaseMapperPlus<PgClass, PgClass> {
} }

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.base.domain.PgGrade;
/** /**
* 年级 Mapper 接口 * 年级 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgGradeMapper extends BaseMapperPlus<PgGrade, PgGrade> { public interface PgGradeMapper extends BaseMapperPlus<PgGrade, PgGrade> {
} }

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.base.domain.PgRegion;
/** /**
* 区域 Mapper 接口 * 区域 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgRegionMapper extends BaseMapperPlus<PgRegion, PgRegion> { public interface PgRegionMapper extends BaseMapperPlus<PgRegion, PgRegion> {
} }

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.base.domain.PgSubject;
/** /**
* 学科 Mapper 接口 * 学科 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgSubjectMapper extends BaseMapperPlus<PgSubject, PgSubject> { public interface PgSubjectMapper extends BaseMapperPlus<PgSubject, PgSubject> {
} }

View File

@ -9,7 +9,7 @@ import java.util.List;
/** /**
* 班级 Service 接口 * 班级 Service 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface IPgClassService { public interface IPgClassService {
TableDataInfo<PgClass> selectPageList(PgClass pgClass, PageQuery pageQuery); TableDataInfo<PgClass> selectPageList(PgClass pgClass, PageQuery pageQuery);

View File

@ -9,7 +9,7 @@ import java.util.List;
/** /**
* 年级 Service 接口 * 年级 Service 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface IPgGradeService { public interface IPgGradeService {

View File

@ -7,7 +7,7 @@ import java.util.List;
/** /**
* 区域 Service 接口 * 区域 Service 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface IPgRegionService { public interface IPgRegionService {
List<PgRegion> selectList(PgRegion region); List<PgRegion> selectList(PgRegion region);

View File

@ -9,7 +9,7 @@ import java.util.List;
/** /**
* 学科 Service 接口 * 学科 Service 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface IPgSubjectService { public interface IPgSubjectService {
TableDataInfo<PgSubject> selectPageList(PgSubject subject, PageQuery pageQuery); TableDataInfo<PgSubject> selectPageList(PgSubject subject, PageQuery pageQuery);

View File

@ -17,7 +17,7 @@ import java.util.List;
/** /**
* 班级 Service 实现 * 班级 Service 实现
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
@Service @Service

View File

@ -17,7 +17,7 @@ import java.util.List;
/** /**
* 年级 Service 实现 * 年级 Service 实现
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
@Service @Service

View File

@ -14,7 +14,7 @@ import java.util.List;
/** /**
* 区域 Service 实现 * 区域 Service 实现
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
@Service @Service

View File

@ -17,7 +17,7 @@ import java.util.List;
/** /**
* 学科 Service 实现 * 学科 Service 实现
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
@Service @Service

View File

@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.*;
/** /**
* 会员管理 * 会员管理
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -13,7 +13,7 @@ import java.util.Date;
/** /**
* 会员表 * 会员表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.member.domain.PgMember;
/** /**
* 会员 Mapper 接口 * 会员 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgMemberMapper extends BaseMapperPlus<PgMember, PgMember> { public interface PgMemberMapper extends BaseMapperPlus<PgMember, PgMember> {
} }

View File

@ -9,7 +9,7 @@ import java.util.List;
/** /**
* 会员 Service 接口 * 会员 Service 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface IPgMemberService { public interface IPgMemberService {
TableDataInfo<PgMember> selectPageList(PgMember member, PageQuery pageQuery); TableDataInfo<PgMember> selectPageList(PgMember member, PageQuery pageQuery);

View File

@ -17,7 +17,7 @@ import java.util.List;
/** /**
* 会员 Service 实现 * 会员 Service 实现
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
@Service @Service

View File

@ -18,7 +18,7 @@ import java.util.List;
/** /**
* 学校管理 * 学校管理
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -11,7 +11,7 @@ import org.dromara.common.mybatis.core.domain.BaseEntity;
/** /**
* 学校表 * 学校表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -11,7 +11,7 @@ import java.util.Date;
/** /**
* 学校班级表 * 学校班级表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@TableName("pg_school_class") @TableName("pg_school_class")

View File

@ -11,7 +11,7 @@ import java.util.Date;
/** /**
* 学校年级关联表 * 学校年级关联表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@TableName("pg_school_grade") @TableName("pg_school_grade")

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.school.domain.PgSchoolClass;
/** /**
* 学校班级 Mapper 接口 * 学校班级 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgSchoolClassMapper extends BaseMapperPlus<PgSchoolClass, PgSchoolClass> { public interface PgSchoolClassMapper extends BaseMapperPlus<PgSchoolClass, PgSchoolClass> {
} }

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.school.domain.PgSchoolGrade;
/** /**
* 学校年级关联 Mapper 接口 * 学校年级关联 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgSchoolGradeMapper extends BaseMapperPlus<PgSchoolGrade, PgSchoolGrade> { public interface PgSchoolGradeMapper extends BaseMapperPlus<PgSchoolGrade, PgSchoolGrade> {
} }

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.school.domain.PgSchool;
/** /**
* 学校 Mapper 接口 * 学校 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgSchoolMapper extends BaseMapperPlus<PgSchool, PgSchool> { public interface PgSchoolMapper extends BaseMapperPlus<PgSchool, PgSchool> {
} }

View File

@ -9,7 +9,7 @@ import java.util.List;
/** /**
* 学校 Service 接口 * 学校 Service 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface IPgSchoolService { public interface IPgSchoolService {
TableDataInfo<PgSchool> selectPageList(PgSchool school, PageQuery pageQuery); TableDataInfo<PgSchool> selectPageList(PgSchool school, PageQuery pageQuery);

View File

@ -17,7 +17,7 @@ import java.util.List;
/** /**
* 学校 Service 实现 * 学校 Service 实现
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
@Service @Service

View File

@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.*;
/** /**
* 学生管理 * 学生管理
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Validated @Validated
@RequiredArgsConstructor @RequiredArgsConstructor

View File

@ -13,7 +13,7 @@ import java.util.Date;
/** /**
* 学生表 * 学生表
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)

View File

@ -6,7 +6,7 @@ import org.dromara.pangu.student.domain.PgStudent;
/** /**
* 学生 Mapper 接口 * 学生 Mapper 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface PgStudentMapper extends BaseMapperPlus<PgStudent, PgStudent> { public interface PgStudentMapper extends BaseMapperPlus<PgStudent, PgStudent> {
} }

View File

@ -9,7 +9,7 @@ import java.util.List;
/** /**
* 学生 Service 接口 * 学生 Service 接口
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
public interface IPgStudentService { public interface IPgStudentService {
TableDataInfo<PgStudent> selectPageList(PgStudent student, PageQuery pageQuery); TableDataInfo<PgStudent> selectPageList(PgStudent student, PageQuery pageQuery);

View File

@ -17,7 +17,7 @@ import java.util.List;
/** /**
* 学生 Service 实现 * 学生 Service 实现
* *
* @author 湖北新华业务中台研发团队 * @author pangu
*/ */
@RequiredArgsConstructor @RequiredArgsConstructor
@Service @Service