分类:
2008-09-11 14:33:53
<%@ page language="java" pageEncoding="ISO-8859-1"%>
<%@ taglib uri="" prefix="bean"%>
<%@ taglib uri="" prefix="html"%>
代码
package com.hp.entity;
import java.sql.Blob;
public class Photo implements java.io.Serializable {
private Integer id;
private String name;
private Blob photo;
public Photo() {
}
public Photo(String name) {
this.name = name;
}
public Photo(String name, Blob photo) {
this.name = name;
this.photo = photo;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Blob getPhoto() {
return photo;
}
public void setPhoto(Blob photo) {
this.photo = photo;
}
}
view plaincopy to clipboardprint?
package com.hp.entity;
import java.sql.Blob;
public class Photo implements java.io.Serializable {
private Integer id;
private String name;
private Blob photo;
public Photo() {
}
public Photo(String name) {
this.name = name;
}
public Photo(String name, Blob photo) {
this.name = name;
this.photo = photo;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}