feat: 全量提交

This commit is contained in:
horizons
2022-10-24 07:50:54 +08:00
commit de9157143a
128 changed files with 7493 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package com.youlai.system.converter;
import com.youlai.system.pojo.entity.SysDept;
import com.youlai.system.pojo.form.DeptForm;
import com.youlai.system.pojo.vo.dept.DeptVO;
import org.mapstruct.Mapper;
/**
* 部门对象转换器
*
* @author haoxr
* @date 2022/7/29
*/
@Mapper(componentModel = "spring")
public interface DeptConverter {
DeptForm entity2Form(SysDept entity);
DeptVO entity2Vo(SysDept entity);
SysDept form2Entity(DeptForm deptForm);
}