Browse Source

拽一拽dev

master
sunyuchao 4 years ago
parent
commit
2f384fb2b6
  1. 4
      epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/org/impl/CustomerGridServiceImpl.java

4
epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/service/org/impl/CustomerGridServiceImpl.java

@ -11,6 +11,7 @@ import com.epmet.dto.org.CustomerStaffGridDTO;
import com.epmet.dto.org.GridInfoDTO;
import com.epmet.entity.org.CustomerGridEntity;
import com.epmet.service.org.CustomerGridService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Date;
@ -20,6 +21,9 @@ import java.util.List;
@DataSource(DataSourceConstant.GOV_ORG)
public class CustomerGridServiceImpl extends BaseServiceImpl<CustomerGridDao, CustomerGridEntity> implements CustomerGridService {
@Autowired
private CustomerGridDao customerGridDao;
@Override
public List<CustomerGridEntity> listGridsByCreateTime(Date start, Date end) {
return baseDao.listGridsByCreateTime(start, end);

Loading…
Cancel
Save