Blame view

YearDictService.java 435 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package com.zhongzhi.service;

import com.zhongzhi.model.YearDictDO;
import com.baomidou.mybatisplus.extension.service.IService;

import java.util.List;

/**
 * <p>
 * 年份字典表 服务类
 * </p>
 *
 * @author DengMin
 * @since 2023-04-11
 */
public interface YearDictService extends IService<YearDictDO> {

   List<YearDictDO> queryYears();

   void updateYear(YearDictDO yearDictDO);

   void addYear(YearDictDO yearDictDO);
}