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.
16 lines
371 B
16 lines
371 B
2 years ago
|
package com.dxhy.erp.dao;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.dxhy.erp.entity.TdxCheckInvoiceDetail;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
/**
|
||
|
* @author jiaohongyang
|
||
|
* @date 2019年3月26日 下午6:02:48 查验明细表dao
|
||
|
*
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface SignCheckInvoiceDetailDao extends BaseMapper<TdxCheckInvoiceDetail> {
|
||
|
|
||
|
}
|