12 lines
339 B
Java
12 lines
339 B
Java
|
|
package com.gear.oa.mapper;
|
||
|
|
|
||
|
|
import com.gear.common.core.mapper.BaseMapperPlus;
|
||
|
|
import com.gear.oa.domain.GearReimbursement;
|
||
|
|
import com.gear.oa.domain.vo.GearReimbursementVo;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 报销Mapper接口
|
||
|
|
*/
|
||
|
|
public interface GearReimbursementMapper extends BaseMapperPlus<GearReimbursementMapper, GearReimbursement, GearReimbursementVo> {
|
||
|
|
}
|