cloudroam
2024-12-04 6c823dd44dbde79f008001a2a11e7bf9bc6bf8cc
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.mzl.flower.mapper.flower;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mzl.flower.entity.flower.FlowerMarkupPl;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
@Repository
public interface FlowerMarkupPlMapper extends BaseMapper<FlowerMarkupPl> {
 
    @Select("select * from t_flower_markup_pl where id = #{id}")
    FlowerMarkupPl selectMarkupPlById(Long id);
}