package cn.wisenergy.mapper;
import cn.wisenergy.model.app.Profession;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface ProfessionMapper extends BaseMapper<Profession> {
Profession add(Profession profession);
List<Profession> getList();
Profession getById(@Param("id") Integer id);
}
-
licc authored70ed07dd