GatewayWhiteListMapper.java 435 B

1234567891011121314
  1. /**
  2. * Date:2019-54-24 15:54:00
  3. * author:吴洪双
  4. */
  5. package com.shawn.repository;
  6. import com.shawn.model.entity.GatewayWhiteList;
  7. import com.shawn.model.entity.GatewayWhiteListExample;
  8. import com.shawn.model.param.GatewayWhiteListParam;
  9. import com.shawn.repository.base.BaseDaoInterface;
  10. public interface GatewayWhiteListMapper extends BaseDaoInterface<GatewayWhiteList,GatewayWhiteListExample,GatewayWhiteListParam, String> {
  11. }