📄 movieinfo.java
字号:
package com.accp.entity;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Movieinfo entity.
*
* @author MyEclipse Persistence Tools
*/
public class Movieinfo implements java.io.Serializable {
// Fields
private Long id;
private String name;
private String house;
private Date showtime;
private String movieprice;
private Set tickets = new HashSet(0);
// Constructors
/** default constructor */
public Movieinfo() {
}
/** full constructor */
public Movieinfo(String name, String house, Date showtime,
String movieprice, Set tickets) {
this.name = name;
this.house = house;
this.showtime = showtime;
this.movieprice = movieprice;
this.tickets = tickets;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getHouse() {
return this.house;
}
public void setHouse(String house) {
this.house = house;
}
public Date getShowtime() {
return this.showtime;
}
public void setShowtime(Date showtime) {
this.showtime = showtime;
}
public String getMovieprice() {
return this.movieprice;
}
public void setMovieprice(String movieprice) {
this.movieprice = movieprice;
}
public Set getTickets() {
return this.tickets;
}
public void setTickets(Set tickets) {
this.tickets = tickets;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -