CouponSendConvert.java 529 B

1234567891011121314151617181920212223
  1. package com.dk.oauth.infrastructure.convert.integral;
  2. import com.dk.oauth.model.VO.integral.CouponSendVO;
  3. import com.dk.oauth.model.pojo.integral.CouponSend;
  4. import org.mapstruct.Mapper;
  5. /**
  6. * @desc : 优惠券发出实体类型转换
  7. * @date : 2024/7/26 9:36
  8. * @author : 寇珊珊
  9. */
  10. @Mapper(componentModel = "spring")
  11. public interface CouponSendConvert {
  12. /**
  13. * @desc : VO转pojo
  14. * @date : 2024/7/26 9:37
  15. * @author : 寇珊珊
  16. */
  17. CouponSend convertToPo(CouponSendVO couponSendVO);
  18. }