package com.zsElectric.boot.business.converter; import org.mapstruct.Mapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.zsElectric.boot.business.model.entity.UserInfoIntegralLog; import com.zsElectric.boot.business.model.form.UserInfoIntegralLogForm; /** * 用户积分日志记录对象转换器 * * @author zsElectric * @since 2025-12-12 10:25 */ @Mapper(componentModel = "spring") public interface UserInfoIntegralLogConverter{ UserInfoIntegralLogForm toForm(UserInfoIntegralLog entity); UserInfoIntegralLog toEntity(UserInfoIntegralLogForm formData); }