feat:搭建工程

This commit is contained in:
2025-06-24 20:01:04 +08:00
commit 532bf9633a
39 changed files with 1345 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.cxx.food.service;
import com.cxx.food.dto.SessionDto;
public interface SessionService {
SessionDto create(String name, String password);
}