1
luofl
2025-03-11 b8dedd4e1962cf4f7984b01d500f950fe5e8fea3
1
2
3
4
5
6
7
8
9
10
package com.ruoyi.seatademo.mapper;
 
import com.ruoyi.seatademo.domain.Product;
 
public interface ProductMapper
{
    public Product selectById(Long productId);
 
    public void updateById(Product product);
}