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.
26 lines
583 B
Java
26 lines
583 B
Java
3 years ago
|
package com.engine.organization.mapper.scheme;
|
||
|
|
||
|
|
||
|
import com.engine.organization.entity.scheme.param.SchemeSearchParam;
|
||
|
import com.engine.organization.entity.scheme.po.SchemePO;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
import org.apache.ibatis.annotations.Select;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* @Author weaver_cl
|
||
|
* @Description: TODO
|
||
|
* @Date 2022/3/9
|
||
|
* @Version V1.0
|
||
|
**/
|
||
|
public interface SchemeMapper {
|
||
|
|
||
|
|
||
|
@Select("select * from jcl_org_scheme t where scheme_no = #{schemeNo}")
|
||
|
List<SchemePO> listByNo(String schemeNo);
|
||
|
|
||
|
int insertIgnoreNull(SchemePO schemePO);
|
||
|
|
||
|
}
|