iproduct.java
来自「基于Struts的网络商店源码。使用Hibernate技术」· Java 代码 · 共 59 行
JAVA
59 行
package com.sush.webstore.store.domain;
public interface IProduct {
/**
* @return the description
*/
String getDescription();
/**
* @param description
* the description to set
*/
void setDescription(String description);
/**
* @return the id
*/
long getId();
/**
* @return the name
*/
String getName();
/**
* @param name
* the name to set
*/
void setName(String name);
/**
* @return the images
*/
IImages getIImages();
/**
* @return the cost
*/
Double getCost();
/**
* @param cost
* the cost to set
*/
void setCost(Double cost);
/**
* @return the units
*/
Long getUnits();
/**
* @param units
* the units to set
*/
void setUnits(Long units);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?