| | |
| | | package com.jilongda.manage.service; |
| | | |
| | | import com.jilongda.common.basic.PageInfo; |
| | | import com.jilongda.manage.model.TOptometrist; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.jilongda.manage.query.TOptometryQuery; |
| | | import com.jilongda.manage.vo.TOptometryVO; |
| | | import com.jilongda.manage.query.TOptometristQuery; |
| | | import com.jilongda.manage.vo.TOptometristVO; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TOptometristService extends IService<TOptometrist> { |
| | | |
| | | PageInfo<TOptometryVO> pageList(TOptometryQuery query); |
| | | |
| | | PageInfo<TOptometristVO> pageList1(TOptometristQuery query); |
| | | |
| | | Boolean upAndDown(Integer id, Integer status); |
| | | } |