mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-22 00:19:37 +08:00
18 lines
353 B
Java
18 lines
353 B
Java
![]() |
package com.ics.admin.mapper;
|
||
|
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.ics.admin.domain.CustomerAttachments;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* 客户附件Mapper接口
|
||
|
*
|
||
|
* @author zzm
|
||
|
* @date 2021-03-29
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface CustomerAttachmentsMapper extends BaseMapper<CustomerAttachments> {
|
||
|
|
||
|
}
|