Blame view

src/main/java/com/sincere/student/mapper/SysUserMapper.java 373 Bytes
b9411514   陈杰   first
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.sincere.student.mapper;

import com.sincere.student.model.SysUser;

public interface SysUserMapper {
    int deleteByPrimaryKey(Integer id);

    int insert(SysUser record);

    int insertSelective(SysUser record);

    SysUser selectByPrimaryKey(Integer id);

    int updateByPrimaryKeySelective(SysUser record);

    int updateByPrimaryKey(SysUser record);
}