📄 packaging.java
字号:
package com.hintsoft.vod.entities;
import java.io.Serializable;
import java.util.List;
/**
* 大礼包表.
*/
public class Packaging implements Serializable {
private static final long serialVersionUID = -7215849351289851578L;
private int id;
//礼包名称
private String name;
//礼包价格
private float price;
//礼包影片
private List urlfile;
//礼包介绍
private String introduction;
private String remark;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getIntroduction() {
return introduction;
}
public void setIntroduction(String introduction) {
this.introduction = introduction;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String toString() {
return getClass().getName()
+ ": id = " + id
+ "; name = " + name
+ "; price = " + price
+ "; introduction = " + introduction
+ "; remark = " + remark;
}
public List getUrlfile() {
return urlfile;
}
public void setUrlfile(List urlfile) {
this.urlfile = urlfile;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -