| | |
| | | package com.yeshi.fanli.entity.config;
|
| | |
|
| | | import org.yeshi.utils.annotation.Map;
|
| | |
|
| | | /**
|
| | | * 常规配置
|
| | | * |
| | | * @author Administrator
|
| | | *
|
| | | */
|
| | | public class ConstantConfig {
|
| | | @Map("test")
|
| | | private String test;
|
| | | @Map("task")
|
| | | private String task;
|
| | | @Map("outnetwork")
|
| | | private String outNetWork;
|
| | |
|
| | | public String getTest() {
|
| | | return test;
|
| | | }
|
| | |
|
| | | public void setTest(String test) {
|
| | | this.test = test;
|
| | | }
|
| | |
|
| | | public String getTask() {
|
| | | return task;
|
| | | }
|
| | |
|
| | | public void setTask(String task) {
|
| | | this.task = task;
|
| | | }
|
| | |
|
| | | public String getOutNetWork() {
|
| | | return outNetWork;
|
| | | }
|
| | |
|
| | | public void setOutNetWork(String outNetWork) {
|
| | | this.outNetWork = outNetWork;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.entity.config; |
| | | |
| | | import org.yeshi.utils.annotation.Map; |
| | | |
| | | /** |
| | | * 常规配置 |
| | | * |
| | | * @author Administrator |
| | | * |
| | | */ |
| | | public class ConstantConfig { |
| | | @Map("test") |
| | | private String test; |
| | | @Map("task") |
| | | private String task; |
| | | @Map("outnetwork") |
| | | private String outNetWork; |
| | | @Map("mq_pub") |
| | | private String mqPub; |
| | | |
| | | public String getTest() { |
| | | return test; |
| | | } |
| | | |
| | | public void setTest(String test) { |
| | | this.test = test; |
| | | } |
| | | |
| | | public String getTask() { |
| | | return task; |
| | | } |
| | | |
| | | public void setTask(String task) { |
| | | this.task = task; |
| | | } |
| | | |
| | | public String getOutNetWork() { |
| | | return outNetWork; |
| | | } |
| | | |
| | | public void setOutNetWork(String outNetWork) { |
| | | this.outNetWork = outNetWork; |
| | | } |
| | | |
| | | public String getMqPub() { |
| | | return mqPub; |
| | | } |
| | | |
| | | public void setMqPub(String mqPub) { |
| | | this.mqPub = mqPub; |
| | | } |
| | | } |