ConversionPrice.java
806 Bytes
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.bjivt.entity.showtime;
/**
* @author ts
* 2016年7月14日 下午5:22:10
* tbl_conversion_price
*/
public class ConversionPrice implements java.io.Serializable{
private Integer id;
//价格
private Integer price;
//中国币
private Integer chineseCoin;
//是否关闭
private Integer isClose;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getPrice() {
return price;
}
public void setPrice(Integer price) {
this.price = price;
}
public Integer getChineseCoin() {
return chineseCoin;
}
public void setChineseCoin(Integer chineseCoin) {
this.chineseCoin = chineseCoin;
}
public Integer getIsClose() {
return isClose;
}
public void setIsClose(Integer isClose) {
this.isClose = isClose;
}
}