xiaoshoudingdandao.java

来自「自己写的一个java购销系统」· Java 代码 · 共 17 行

JAVA
17
字号
package com.yuanjin.mtgx.dao;

import java.util.List;

import com.yuanjin.mtgx.entity.XiaoShouDingDan;

public interface XiaoShouDingDanDAO {
	public void save(XiaoShouDingDan xsdd);
	public void delete(XiaoShouDingDan xsdd);
	public void update(XiaoShouDingDan xsdd);
	public List<XiaoShouDingDan> findALL();
	public XiaoShouDingDan findByNo(String no);
	public List<XiaoShouDingDan> findAllByMonth(String month);
	public List findGroupedByMonth(String month);

}

⌨️ 快捷键说明

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