yang_shj
1 year ago
14 changed files with 92 additions and 129 deletions
@ -1,13 +1,13 @@ |
|||||||
package com.hnac.hzims.scheduled.mapper.inspect; |
package com.hnac.hzims.scheduled.mapper.inspect; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
import com.hnac.hzinfo.inspect.task.entity.TaskEntity; |
import com.hnac.hzinfo.inspect.task.entity.TaskEntity; |
||||||
import org.apache.ibatis.annotations.Mapper; |
import org.apache.ibatis.annotations.Mapper; |
||||||
import org.springblade.core.datascope.mapper.UserDataScopeBaseMapper; |
|
||||||
|
|
||||||
/** |
/** |
||||||
* @author ysj |
* @author ysj |
||||||
*/ |
*/ |
||||||
@Mapper |
@Mapper |
||||||
public interface TaskMapper extends UserDataScopeBaseMapper<TaskEntity> { |
public interface TaskMapper extends BaseMapper<TaskEntity> { |
||||||
|
|
||||||
} |
} |
@ -1,12 +1,12 @@ |
|||||||
package com.hnac.hzims.scheduled.mapper.inspect; |
package com.hnac.hzims.scheduled.mapper.inspect; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
import com.hnac.hzinfo.inspect.plan.entity.PlanEntity; |
import com.hnac.hzinfo.inspect.plan.entity.PlanEntity; |
||||||
import org.apache.ibatis.annotations.Mapper; |
import org.apache.ibatis.annotations.Mapper; |
||||||
import org.springblade.core.datascope.mapper.UserDataScopeBaseMapper; |
|
||||||
|
|
||||||
/** |
/** |
||||||
* @author ysj |
* @author ysj |
||||||
*/ |
*/ |
||||||
@Mapper |
@Mapper |
||||||
public interface PlanMapper extends UserDataScopeBaseMapper<PlanEntity> { |
public interface TaskPlanMapper extends BaseMapper<PlanEntity> { |
||||||
} |
} |
@ -1,5 +1,5 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8" ?> |
<?xml version="1.0" encoding="UTF-8" ?> |
||||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > |
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > |
||||||
<mapper namespace="com.hnac.hzims.scheduled.mapper.inspect.PlanMapper"> |
<mapper namespace="com.hnac.hzims.scheduled.mapper.inspect.TaskPlanMapper"> |
||||||
|
|
||||||
</mapper> |
</mapper> |
Loading…
Reference in new issue