2 changed files with 37 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||||
|
package cn.chjyj.szwh.service; |
||||
|
|
||||
|
import cn.chjyj.szwh.bean.Festivals; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
public interface FestivalsService { |
||||
|
/** |
||||
|
* 查询年度内的所有节假日 |
||||
|
* @param iyear |
||||
|
* @return |
||||
|
*/ |
||||
|
List<Festivals> getYearFestivals(int iyear); |
||||
|
|
||||
|
/** |
||||
|
* 增加法定节假日 |
||||
|
* @param festivals |
||||
|
* @return |
||||
|
*/ |
||||
|
int addFestival(Festivals festivals); |
||||
|
} |
||||
Loading…
Reference in new issue