StaffRightConvert.java 489 B

12345678910111213141516171819202122
  1. package com.dk.mdm.infrastructure.convert.mst;
  2. import com.dk.mdm.model.pojo.mst.StaffRight;
  3. import com.dk.mdm.model.vo.mst.StaffRightVO;
  4. import org.mapstruct.Mapper;
  5. /**
  6. * @desc : StaffRightConvert
  7. * @author : admin
  8. * @date : 2023/2/3 15:44
  9. */
  10. @Mapper(componentModel = "spring")
  11. public interface StaffRightConvert {
  12. /**
  13. * @desc : 转换vo为pojo
  14. * @author : admin
  15. * @date : 2023/1/9 10:37
  16. */
  17. StaffRight convertToPo(StaffRightVO staffRightVO);
  18. }