DeviceServiceI.java 429 B

123456789101112131415
  1. package com.xcgl.device.service;
  2. import com.xcgl.device.entity.DeviceEntity;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import java.io.Serializable;
  5. public interface DeviceServiceI extends CommonService{
  6. public void delete(DeviceEntity entity) throws Exception;
  7. public Serializable save(DeviceEntity entity) throws Exception;
  8. public void saveOrUpdate(DeviceEntity entity) throws Exception;
  9. }