USERSMapper.java 517 字节
package com.tianbo.warehouse.dao;

import com.tianbo.warehouse.model.ROLE;
import com.tianbo.warehouse.model.USERS;
import java.math.BigDecimal;
import java.util.List;

public interface USERSMapper {
    int deleteByPrimaryKey(BigDecimal userId);

    int insert(USERS record);

    int insertSelective(USERS record);

    USERS selectByPrimaryKey(BigDecimal userId);

    List<USERS> selectByUsername(String userName);

    int updateByPrimaryKeySelective(USERS record);

    int updateByPrimaryKey(USERS record);

}