1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.landtool.lanbase.modules.res.entity;
|
|
| public class Res_ThemeRelation {
|
| private Integer themeid;
| private Integer sceneid;
|
|
| public Integer getThemeid() {
| return themeid;
| }
|
| public void setThemeid(Integer themeid) {
| this.themeid = themeid;
| }
|
|
| public Integer getSceneid() {
| return sceneid;
| }
|
| public void setSceneid(Integer sceneid) {
| this.sceneid = sceneid;
| }
|
| }
|
|