UserInfoIntegralLogConverter.java 608 B

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