refactor: 重构实体类equals和hashCode方法 fix: 修复WebSocketService消息发送逻辑 style: 格式化代码和优化导入 docs: 更新JacksonConfig日期序列化格式 test: 添加CompanyFilePathTableCell测试类 chore: 清理无用代码和注释
19 lines
522 B
Java
19 lines
522 B
Java
package com.ecep.contract.service;
|
|
|
|
import java.util.List;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import com.ecep.contract.model.ContractItem;
|
|
import com.ecep.contract.model.Inventory;
|
|
import com.ecep.contract.vm.ContractItemViewModel;
|
|
|
|
@Service
|
|
public class ContractItemService extends QueryService<ContractItem, ContractItemViewModel> {
|
|
|
|
public List<ContractItem> findAllByInventory(Inventory parent) {
|
|
throw new UnsupportedOperationException("Unimplemented method 'findAllByInventory'");
|
|
}
|
|
|
|
}
|