123456789101112131415161718 |
- package com.fjhx.controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 邮件关联地址表 前端控制器
- * </p>
- *
- * @author zlj
- * @since 2023-03-06
- */
- @RestController
- @RequestMapping("/mailAddress")
- public class MailAddressController {
- }
|