diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/OrderMonitorDataService.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/OrderMonitorDataService.java index 8b4426b18..76166ca80 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/OrderMonitorDataService.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/OrderMonitorDataService.java @@ -4,16 +4,16 @@ import com.jsowell.pile.domain.OrderMonitorData; public interface OrderMonitorDataService{ - public int deleteByPrimaryKey(Integer id); + int deleteByPrimaryKey(Integer id); - public int insert(OrderMonitorData record); + int insert(OrderMonitorData record); - public int insertSelective(OrderMonitorData record); + int insertSelective(OrderMonitorData record); - public OrderMonitorData selectByPrimaryKey(Integer id); + OrderMonitorData selectByPrimaryKey(Integer id); - public int updateByPrimaryKeySelective(OrderMonitorData record); + int updateByPrimaryKeySelective(OrderMonitorData record); - public int updateByPrimaryKey(OrderMonitorData record); + int updateByPrimaryKey(OrderMonitorData record); }