This commit is contained in:
2023-05-10 15:19:34 +08:00
parent 9f2537f82d
commit 92610695b2

View File

@@ -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);
}