package com.zy.crm.manager.service; import com.zy.crm.manager.entity.Cstmr; import com.baomidou.mybatisplus.service.IService; public interface CstmrService extends IService { Cstmr selectByUuid(Long hostId, String uuid); String getNextUuid(Long hostId); }