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
| package com.tejia.lijin.app.entity;
|
| import com.google.gson.annotations.Expose;
|
| public class TicketState {
| @Expose
| private int state;
| @Expose
| private TextColor text;
|
| public int getState() {
| return state;
| }
|
| public void setState(int state) {
| this.state = state;
| }
|
| public TextColor getText() {
| return text;
| }
|
| public void setText(TextColor text) {
| this.text = text;
| }
| }
|
|