You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
392 B
18 lines
392 B
package com.ccic.safeliab.dao; |
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
import com.ccic.safeliab.entity.ServiceVisitItemVal; |
|
import org.apache.ibatis.annotations.Mapper; |
|
|
|
/** |
|
* <p> |
|
* 服务回访项选项表 Mapper 接口 |
|
* </p> |
|
* |
|
* @author testjava |
|
* @since 2022-08-16 |
|
*/ |
|
@Mapper |
|
public interface ServiceVisitItemValMapper extends BaseMapper<ServiceVisitItemVal> { |
|
|
|
}
|
|
|