| 1234567891011121314151617181920 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.BisInspPlanMonth;
- import cn.com.goldenwater.dcproj.model.BisInspPlanMonthArea;
- import cn.com.goldenwater.dcproj.param.BisInspPlanMonthAreaParam;
- /**
- * @author lhc
- * @date 2022-4-21
- */
- public interface BisInspPlanMonthAreaService extends CrudService<BisInspPlanMonthArea, BisInspPlanMonthAreaParam> {
- void deleteByplanMonth (String planMonth);
- void insertByplanMonth (BisInspPlanMonth o);
- void updateByplanMonth (BisInspPlanMonth o);
- }
|