diff --git a/sport/src/main/java/com/srr/dto/mapstruct/MatchGroupMapper.java b/sport/src/main/java/com/srr/dto/mapstruct/MatchGroupMapper.java new file mode 100644 index 00000000..9160ff93 --- /dev/null +++ b/sport/src/main/java/com/srr/dto/mapstruct/MatchGroupMapper.java @@ -0,0 +1,32 @@ +/* +* Copyright 2019-2025 Zheng Jie +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ +package com.srr.dto.mapstruct; + +import me.zhengjie.base.BaseMapper; +import com.srr.domain.MatchGroup; +import com.srr.dto.MatchGroupDto; +import org.mapstruct.Mapper; +import org.mapstruct.ReportingPolicy; + +/** +* @website https://eladmin.vip +* @author Chanheng +* @date 2025-05-25 +**/ +@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE) +public interface MatchGroupMapper extends BaseMapper { + +} diff --git a/sport/src/main/java/com/srr/dto/mapstruct/MatchMapper.java b/sport/src/main/java/com/srr/dto/mapstruct/MatchMapper.java new file mode 100644 index 00000000..b65d8c66 --- /dev/null +++ b/sport/src/main/java/com/srr/dto/mapstruct/MatchMapper.java @@ -0,0 +1,32 @@ +/* +* Copyright 2019-2025 Zheng Jie +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ +package com.srr.dto.mapstruct; + +import me.zhengjie.base.BaseMapper; +import com.srr.domain.Match; +import com.srr.dto.MatchDto; +import org.mapstruct.Mapper; +import org.mapstruct.ReportingPolicy; + +/** +* @website https://eladmin.vip +* @author Chanheng +* @date 2025-05-25 +**/ +@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE) +public interface MatchMapper extends BaseMapper { + +} diff --git a/sport/src/main/java/com/srr/dto/mapstruct/TeamMapper.java b/sport/src/main/java/com/srr/dto/mapstruct/TeamMapper.java new file mode 100644 index 00000000..8f1deb9a --- /dev/null +++ b/sport/src/main/java/com/srr/dto/mapstruct/TeamMapper.java @@ -0,0 +1,32 @@ +/* +* Copyright 2019-2025 Zheng Jie +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ +package com.srr.dto.mapstruct; + +import me.zhengjie.base.BaseMapper; +import com.srr.domain.Team; +import com.srr.dto.TeamDto; +import org.mapstruct.Mapper; +import org.mapstruct.ReportingPolicy; + +/** +* @website https://eladmin.vip +* @author Chanheng +* @date 2025-05-25 +**/ +@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE) +public interface TeamMapper extends BaseMapper { + +} diff --git a/sport/src/main/java/com/srr/dto/mapstruct/TeamPlayerMapper.java b/sport/src/main/java/com/srr/dto/mapstruct/TeamPlayerMapper.java new file mode 100644 index 00000000..9ce07fd0 --- /dev/null +++ b/sport/src/main/java/com/srr/dto/mapstruct/TeamPlayerMapper.java @@ -0,0 +1,32 @@ +/* +* Copyright 2019-2025 Zheng Jie +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ +package com.srr.dto.mapstruct; + +import me.zhengjie.base.BaseMapper; +import com.srr.domain.TeamPlayer; +import com.srr.dto.TeamPlayerDto; +import org.mapstruct.Mapper; +import org.mapstruct.ReportingPolicy; + +/** +* @website https://eladmin.vip +* @author Chanheng +* @date 2025-05-25 +**/ +@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE) +public interface TeamPlayerMapper extends BaseMapper { + +}