package com.thhy.materials.modules.biz.pipeplanmonth.service;
|
|
import com.thhy.materials.modules.biz.pipeplanmonth.entity.PipePlanMonth;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 服务类
|
* @author zhang_xiao_bo
|
* @since 2023-04-18 09:10:58
|
*/
|
public interface PipePlanMonthService {
|
|
PipePlanMonth get(Serializable id);
|
|
List<PipePlanMonth> findList(PipePlanMonth pipePlanMonth);
|
|
void addPipePlanMonth(PipePlanMonth pipePlanMonth);
|
|
void update(PipePlanMonth pipePlanMonth);
|
|
void delete(Serializable id);
|
}
|