yangys
2024-05-30 a3686cfa49bf53fb91a2ceb960cf15b3ebdac641
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.qianwen.smartman.modules.cps.service;
 
import java.util.List;
import com.qianwen.core.mp.service.BladeService;
import com.qianwen.smartman.modules.cps.entity.CheckItem;
import com.qianwen.smartman.modules.cps.vo.CheckItemSubmitVO;
import com.qianwen.smartman.modules.cps.vo.CheckItemUpdateVO;
import com.qianwen.smartman.modules.cps.vo.CheckItemVO;
 
public interface ICheckItemService extends BladeService<CheckItem> {
    List<CheckItemVO> listCheckItem(String projectId);
 
    List<CheckItem> createCheckItem(CheckItemSubmitVO vo);
 
    boolean updateCheckItem(CheckItemUpdateVO vo);
}