11 lines
336 B
Plaintext
11 lines
336 B
Plaintext
|
package com.surfbird.business.service;
|
||
|
|
||
|
import org.springframework.stereotype.Service;
|
||
|
|
||
|
import com.surfbird.business.bean.HeatAnalyze;
|
||
|
import com.surfbird.business.dao.HeatCollectDao;
|
||
|
import com.surfbird.common.service.SqlServerService;
|
||
|
|
||
|
@Service
|
||
|
public class HeatCollectService extends SqlServerService<HeatCollectDao, HeatAnalyze> {}
|