yangys
2024-05-06 e19227de97d21c10fd22536f85c8153e63072d0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.qianwen.smartman.modules.andon.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.qianwen.core.mp.service.BladeService;
import com.qianwen.core.mp.support.Query;
import com.qianwen.smartman.modules.andon.entity.AndonReason;
import com.qianwen.smartman.modules.andon.vo.AndonReasonSaveVO;
import com.qianwen.smartman.modules.andon.vo.AndonReasonUpdateVO;
import com.qianwen.smartman.modules.andon.vo.AndonReasonVO;
import com.qianwen.smartman.modules.cps.vo.IdsVO;
 
public interface IAndonReasonService extends BladeService<AndonReason> {
    IPage<AndonReasonVO> pageQuery(Query query, String typeId);
 
    AndonReasonVO addReason(AndonReasonSaveVO vo);
 
    Boolean updateReason(AndonReasonUpdateVO vo);
 
    Boolean removeReason(IdsVO vo);
}