Commit abbd3054 authored by 廖旭伟's avatar 廖旭伟

增加数据管理模块

parent 147d7f56
package com.mortals.xhx.module.role.dao;
import com.mortals.framework.dao.ICRUDDao;
import com.mortals.xhx.module.role.model.RoleModelEntity;
import java.util.List;
/**
* 角色模块数据Dao
* 角色模块数据 DAO接口
*
* @author zxfei
* @date 2022-07-05
*/
public interface RoleModelDao extends ICRUDDao<RoleModelEntity,Long>{
}
package com.mortals.xhx.module.role.dao.ibatis;
import org.springframework.stereotype.Repository;
import com.mortals.xhx.module.role.dao.RoleModelDao;
import com.mortals.xhx.module.role.model.RoleModelEntity;
import java.util.Date;
import com.mortals.framework.dao.ibatis.BaseCRUDDaoMybatis;
import java.util.List;
/**
* 角色模块数据DaoImpl DAO接口
*
* @author zxfei
* @date 2022-07-05
*/
@Repository("roleModelDao")
public class RoleModelDaoImpl extends BaseCRUDDaoMybatis<RoleModelEntity,Long> implements RoleModelDao {
}
package com.mortals.xhx.module.role.model.vo;
import com.mortals.framework.model.BaseEntityLong;
import com.mortals.xhx.module.role.model.RoleModelEntity;
import java.util.ArrayList;
import java.util.List;
/**
* 角色模块数据视图对象
*
* @author zxfei
* @date 2022-07-05
*/
public class RoleModelVo extends BaseEntityLong {
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment