yangys
2024-05-18 040976de6f9934b99f30268a28e2ecf42260e217
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);
}