package com.glxp.api.service.inout; import com.glxp.api.entity.inout.IoCodeLostEntity; public interface IoCodeLostService { IoCodeLostEntity findByCode(String code); int insert(IoCodeLostEntity ioCodeLostEntity); int deleteByCode(String code); int update(IoCodeLostEntity ioCodeLostEntity); }