dashboard
repositories
filestore
activity
search
login
main
/
oyingServer
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Merge branch 'pxb' into xin
xin
5 days ago
044a57d2133b2363a6f0d3d167b3eaa587c70b91
[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);
}