puzhibing
2023-02-16 b3ec53a9da0c09dd03da33bfc27f278d13a5d8f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.stylefeng.guns.modular.system.dao;
 
import com.stylefeng.guns.modular.system.model.TOrder;
import com.baomidou.mybatisplus.mapper.BaseMapper;
 
/**
 * <p>
 * 订单 Mapper 接口
 * </p>
 *
 * @author stylefeng
 * @since 2023-02-15
 */
public interface TOrderMapper extends BaseMapper<TOrder> {
 
}