11 lines
334 B
Plaintext
11 lines
334 B
Plaintext
package com.surfbird.business.service;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import com.surfbird.business.bean.HeatAnalyze;
|
|
import com.surfbird.business.dao.HeatAnalyzeDao;
|
|
import com.surfbird.common.service.SurfbirdService;
|
|
|
|
@Service
|
|
public class HeatAnalyzeService extends SurfbirdService<HeatAnalyzeDao, HeatAnalyze> {}
|