You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
324 B
Java
12 lines
324 B
Java
package com.bsd.cases.mapper;
|
|
|
|
import com.bsd.cases.model.CaseContentMaterial;
|
|
import com.bsd.cases.util.CommonMapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
@Repository
|
|
@Mapper
|
|
public interface CaseContentMaterialMapper extends CommonMapper<CaseContentMaterial> {
|
|
}
|