MailboxController.java 344 B

12345678910111213141516171819
  1. package com.fjhx.controller;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. /**
  5. * <p>
  6. * 业务员邮箱信息表 前端控制器
  7. * </p>
  8. *
  9. * @author zlj
  10. * @since 2023-03-06
  11. */
  12. @RestController
  13. @RequestMapping("/mailbox")
  14. public class MailboxController {
  15. }