【UserRoleRequest】新增dto

pull/3/head
chenjinlong 2021-02-03 16:47:04 +08:00
parent 0d01225b27
commit a464924c2e
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
package cn.stylefeng.roses.kernel.system.pojo;
import lombok.Data;
/**
*
*
* @author chenjinlong
* @date 2021/2/3 14:53
*/
@Data
public class UserRoleRequest {
/**
*
*/
private Long userRoleId;
/**
* id
*/
private Long userId;
/**
* id
*/
private Long roleId;
}