⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xiaoshoudingdandao.java

📁 自己写的一个java购销系统
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -