1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.dg.core.service;
|
| import com.dg.core.db.gen.entity.AutomessageSmartConsulting;
|
| public interface IAutomessageSmartConsultingService {
|
| /**
| * 新增智能咨询访问记录
| * @return
| */
| int add(AutomessageSmartConsulting automessageSmartConsulting);
|
| /**
| * 统计访问量
| * @return
| */
| Long countSmartConsulting();
| }
|
|