mirror of https://gitee.com/stylefeng/roses
【UserDataScopeRequest】新增dto
parent
a464924c2e
commit
7871ab637f
|
@ -0,0 +1,29 @@
|
|||
package cn.stylefeng.roses.kernel.system.pojo;
|
||||
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 用户数据范围
|
||||
*
|
||||
* @author chenjinlong
|
||||
* @date 2021/2/3 15:35
|
||||
*/
|
||||
@Data
|
||||
public class UserDataScopeRequest {
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
private Long userDataScopeId;
|
||||
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 机构id
|
||||
*/
|
||||
private Long orgId;
|
||||
}
|
Loading…
Reference in New Issue