重构所有服务类,使其继承自QueryService接口,统一数据查询逻辑。同时为服务类添加@Service注解,确保Spring容器管理。更新相关FXML文件的控制器路径,从manager.ds调整为controller目录结构。调整pom.xml版本号至0.0.84-SNAPSHOT。新增MessageNotitfication和SimpleMessage消息类,提供基础消息结构支持。
13 lines
364 B
Java
13 lines
364 B
Java
package com.ecep.contract.service;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import com.ecep.contract.model.CustomerSatisfactionSurvey;
|
|
import com.ecep.contract.vm.CustomerSatisfactionSurveyViewModel;
|
|
|
|
@Service
|
|
public class CustomerSatisfactionSurveyService
|
|
extends QueryService<CustomerSatisfactionSurvey, CustomerSatisfactionSurveyViewModel> {
|
|
|
|
}
|