| 12345678910111213141516171819202122 |
- package com.dk.mdm.infrastructure.convert.mst;
- import com.dk.mdm.model.pojo.mst.StaffRight;
- import com.dk.mdm.model.vo.mst.StaffRightVO;
- import org.mapstruct.Mapper;
- /**
- * @desc : StaffRightConvert
- * @author : admin
- * @date : 2023/2/3 15:44
- */
- @Mapper(componentModel = "spring")
- public interface StaffRightConvert {
- /**
- * @desc : 转换vo为pojo
- * @author : admin
- * @date : 2023/1/9 10:37
- */
- StaffRight convertToPo(StaffRightVO staffRightVO);
- }
|