17808
2023-11-09 c851c6340b9e804e0da30b5ccfaa06d20636a237
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.mindskip.xzs.domain;
 
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class UserDepartment implements Serializable {
 
    private Integer id;
    private Integer userId;
    private Integer departmentId;
 
 
}