iphototypebusiness.java

来自「spring+webwork+iBatis做的VOD系统web端代码。值得学习M」· Java 代码 · 共 16 行

JAVA
16
字号
package com.hintsoft.vod.business;

import com.hintsoft.vod.entities.PageBean;
import com.hintsoft.vod.entities.PhotoType;

public interface IPhotoTypeBusiness {
	
	public PageBean getNextPhotoType(int currentPage, int recordPage);
	
	public void updatePhotoType(PhotoType photo);
	
	public PhotoType getPhotoType(int typeId);
	
	public void newPhotoType(PhotoType photo);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?