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.
30 lines
786 B
Java
30 lines
786 B
Java
package com.engine.organization.mapper.resource;
|
|
|
|
import com.engine.organization.entity.hrmresource.po.JclOrgCustomTemplatePO;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author Mlin
|
|
* @description 针对表【jcl_org_custom_template】的数据库操作Mapper
|
|
* @createDate 2023-01-12 10:28:52
|
|
* @Entity com.engine.organization.entity.hrmresource.po.JclOrgCustomTemplate
|
|
*/
|
|
public interface JclOrgCustomTemplateMapper {
|
|
|
|
int deleteByPrimaryKey(Long id);
|
|
|
|
int insert(JclOrgCustomTemplatePO record);
|
|
|
|
int insertSelective(JclOrgCustomTemplatePO record);
|
|
|
|
JclOrgCustomTemplatePO selectByPrimaryKey(Long id);
|
|
|
|
int updateByPrimaryKeySelective(JclOrgCustomTemplatePO record);
|
|
|
|
int updateByPrimaryKey(JclOrgCustomTemplatePO record);
|
|
|
|
List<JclOrgCustomTemplatePO> listAll();
|
|
|
|
}
|