You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
875 B
Java
23 lines
875 B
Java
package com.ibeetl.jlw.dao;
|
|
|
|
import com.ibeetl.jlw.entity.ResourcesTrainingStep;
|
|
import com.ibeetl.jlw.web.query.ResourcesTrainingStepQuery;
|
|
import org.beetl.sql.core.engine.PageQuery;
|
|
import org.beetl.sql.mapper.BaseMapper;
|
|
import org.beetl.sql.mapper.annotation.SqlResource;
|
|
import org.beetl.sql.mapper.annotation.Update;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
* ResourcesTrainingStep Dao
|
|
*/
|
|
@SqlResource("jlw.resourcesTrainingStep")
|
|
public interface ResourcesTrainingStepDao extends BaseMapper<ResourcesTrainingStep>{
|
|
public PageQuery<ResourcesTrainingStep> queryByCondition(PageQuery query);
|
|
@Update
|
|
public void deleteResourcesTrainingStepByIds(String ids);
|
|
public List<ResourcesTrainingStep> getByResourcesTrainingIds(String resourcesTrainingIds);
|
|
public List<ResourcesTrainingStep> getValuesByQuery(ResourcesTrainingStepQuery resourcesTrainingStepQuery);
|
|
} |