serviceorderfile.java
来自「基于Sturts+Spring+Hibernate的一个高级销售管理系统。内容丰」· Java 代码 · 共 84 行
JAVA
84 行
package com.yuanchung.sales.model.service;
/**
* ServiceOrderFile entity.
*
* @author MyEclipse Persistence Tools
*/
public class ServiceOrderFile implements java.io.Serializable {
// Fields
private Integer id;
private String fileName;
private String path;
private String size;
private String type;
private ServiceOrder serviceOrder;
// Constructors
/** default constructor */
public ServiceOrderFile() {
}
/** minimal constructor */
/** full constructor */
public ServiceOrderFile(String fileName, String path, String size,
String type) {
this.fileName = fileName;
this.path = path;
this.size = size;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getPath() {
return this.path;
}
public void setPath(String path) {
this.path = path;
}
public String getSize() {
return this.size;
}
public void setSize(String size) {
this.size = size;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public ServiceOrder getServiceOrder() {
return serviceOrder;
}
public void setServiceOrder(ServiceOrder serviceOrder) {
this.serviceOrder = serviceOrder;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?