| | |
| | | */ |
| | | @Slf4j |
| | | @Api(tags = {"花城商城管理模块"}) |
| | | @RestController("/shopFlower") |
| | | @RestController |
| | | @RequestMapping("shopFlower") |
| | | public class ShopFlowerApi extends BaseController { |
| | | @Value("${excel.userurl}") |
| | | private String excelUrl; |
| | | // FTP 登录用户名 |
| | | @Value("${ftp.username}") |
| | | private String userName; |
| | | // FTP 登录密码 |
| | | @Value("${ftp.password}") |
| | | private String password; |
| | | // FTP 服务器地址IP地址 |
| | | @Value("${ftp.host}") |
| | | private String host; |
| | | // FTP 端口 |
| | | @Value("${ftp.port}") |
| | | private int port; |
| | | |
| | | @Resource |
| | | private CommunityService communityService; |
| | | @Resource |