package cn.com.lzt.clothing.user.service; import cn.com.lzt.clothing.user.entity.ClothingUserEntity; import org.jeecgframework.core.common.service.CommonService; import java.io.Serializable; public interface ClothingUserServiceI extends CommonService{ public void delete(ClothingUserEntity entity) throws Exception; public Serializable save(ClothingUserEntity entity) throws Exception; public void saveOrUpdate(ClothingUserEntity entity) throws Exception; }