sgj
8 天以前 71fe4f1f6a75c86640a726b9c230e8aaae2a28e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.fzzy.igds.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.fzzy.igds.domain.FoodPrice;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @Description
 * @Author CZT
 * @Date 2026/01/22 09:04
 */
@Mapper
public interface FoodPriceMapper extends BaseMapper<FoodPrice> {
 
}