photo.java.svn-base
来自「用ssh作的一个小例子」· SVN-BASE 代码 · 共 47 行
SVN-BASE
47 行
package com.googlecode.spring2demo.product;
public class Photo {
private String id;
private String fileName;
private String contentType;
private byte[] data;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
public byte[] getData() {
return data;
}
public void setData(byte[] data) {
this.data = data;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?