dashboard
repositories
filestore
activity
search
login
main
/
oyingServer
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
补充前次提交的遗漏内容,前次提交SHA:a6f4dd
zepengdev
2025-06-14
6e0a83c55db4bae4d23a4c281946bda1d610f678
[oyingServer.git]
/
oying-system
/
src
/
main
/
java
/
com
/
oying
/
modules
/
pc
/
store
/
mapper
/
StoreUserMapper.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.oying.modules.pc.store.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.oying.modules.pc.store.domain.StoreUser;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
/**
* @author lzp
* @date 2025-06-05
**/
@Mapper
public interface StoreUserMapper extends BaseMapper<StoreUser> {
@Insert("INSERT INTO sys_user_store(store_id, user_id, role_type, create_by, permissions, create_time, update_by, update_time) VALUES(#{storeId}, #{userId}, #{roleType}, #{permissions}, #{createBy}, #{createTime}, #{updateBy}, #{updateTime})")
int insert(StoreUser storeUser);
}