ICodeSiteService.java 380 B

123456789101112131415161718
  1. package com.cloudcross.ssp.service;
  2. import com.cloudcross.ssp.model.CodeSite;
  3. import com.cloudcross.ssp.base.service.IGenericService;
  4. /**
  5. * 用户服务接口定义。
  6. *
  7. * @author heng
  8. */
  9. public interface ICodeSiteService extends IGenericService<CodeSite> {
  10. public CodeSite findByAdvertiserId(Long AdvertiserId);
  11. public String getCode(Long AdvertiserId,int type);
  12. }