ConversionPrice.java 806 Bytes
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;
	}

	
}