1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.dji.sample.territory.pojo;
|
| import lombok.Data;
| import org.springframework.beans.factory.annotation.Value;
| import org.springframework.context.annotation.Configuration;
|
| /**
| * @PROJECT_NAME: drone
| * @DESCRIPTION:
| * @USER: aix
| * @DATE: 2024/4/11 11:04
| */
|
| @Configuration
| @Data
| public class TerritoryConfigPojo {
| @Value("${db.sqlite.resource}")
| private String resource;
|
| @Value("${db.sqlite.result}")
| private String result;
| }
|
|