13693261870
昨天 52f576133f30bfa2f04a03c9b12eb520a7fcf2d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.terra.common.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.Map;
 
@Mapper
@Repository
public interface CommonMapper extends BaseMapper {
    @Insert("INSERT INTO lf.sys_operate(url, ip, exec, clazz, type, userid, bak, modular1, modular2) VALUES (#{url}, #{ip}, #{exec}, #{clazz}, #{type}, #{userid}, #{bak}, #{modular1}, #{modular2})")
    public int insertOperate(Map<String,Object> map);
}