SyncDataBasicMapper.java 434 Bytes
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
package com.lyms.sync.data.dao;

import com.lyms.sync.data.entity.SyncDataBasic;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
import java.io.Serializable;
/**
* <p>
* Mapper接口
* </p>
*
* @author fangcheng
* @since 2017-03-13
*/
@Repository
public interface SyncDataBasicMapper extends BaseMapper<SyncDataBasic> {

public Integer deleteLogicById(Serializable id);

}