forked from liyiorg/weixin-popular
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zero
committed
Aug 18, 2018
1 parent
5b08f7f
commit 6553c1b
Showing
7 changed files
with
277 additions
and
235 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/main/java/weixin/popular/bean/semantic/semproxy/inner/ContextInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package weixin.popular.bean.semantic.semproxy.inner; | ||
|
||
/** | ||
* @program: weixin-popular | ||
* @description: | ||
* @author: 01 | ||
* @create: 2018-08-18 13:33 | ||
**/ | ||
public class ContextInfo { | ||
private String isFinished; | ||
private String null_times; | ||
|
||
public String getIsFinished() { | ||
return isFinished; | ||
} | ||
|
||
public void setIsFinished(String isFinished) { | ||
this.isFinished = isFinished; | ||
} | ||
|
||
public String getNull_times() { | ||
return null_times; | ||
} | ||
|
||
public void setNull_times(String null_times) { | ||
this.null_times = null_times; | ||
} | ||
} |
73 changes: 73 additions & 0 deletions
73
src/main/java/weixin/popular/bean/semantic/semproxy/inner/Details.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
package weixin.popular.bean.semantic.semproxy.inner; | ||
|
||
/** | ||
* @program: weixin-popular | ||
* @description: | ||
* @author: 01 | ||
* @create: 2018-08-18 13:32 | ||
**/ | ||
public class Details { | ||
private String airline; | ||
private String hit_str; | ||
private String answer; | ||
private ContextInfo context_info; | ||
private StartLoc start_loc; | ||
private EndLoc end_loc; | ||
private StartDate start_date; | ||
|
||
public String getHit_str() { | ||
return hit_str; | ||
} | ||
|
||
public void setHit_str(String hit_str) { | ||
this.hit_str = hit_str; | ||
} | ||
|
||
public String getAnswer() { | ||
return answer; | ||
} | ||
|
||
public void setAnswer(String answer) { | ||
this.answer = answer; | ||
} | ||
|
||
public ContextInfo getContext_info() { | ||
return context_info; | ||
} | ||
|
||
public void setContext_info(ContextInfo context_info) { | ||
this.context_info = context_info; | ||
} | ||
|
||
public StartLoc getStart_loc() { | ||
return start_loc; | ||
} | ||
|
||
public void setStart_loc(StartLoc start_loc) { | ||
this.start_loc = start_loc; | ||
} | ||
|
||
public EndLoc getEnd_loc() { | ||
return end_loc; | ||
} | ||
|
||
public void setEnd_loc(EndLoc end_loc) { | ||
this.end_loc = end_loc; | ||
} | ||
|
||
public StartDate getStart_date() { | ||
return start_date; | ||
} | ||
|
||
public void setStart_date(StartDate start_date) { | ||
this.start_date = start_date; | ||
} | ||
|
||
public String getAirline() { | ||
return airline; | ||
} | ||
|
||
public void setAirline(String airline) { | ||
this.airline = airline; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/main/java/weixin/popular/bean/semantic/semproxy/inner/EndLoc.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package weixin.popular.bean.semantic.semproxy.inner; | ||
|
||
/** | ||
* @program: weixin-popular | ||
* @description: | ||
* @author: 01 | ||
* @create: 2018-08-18 13:34 | ||
**/ | ||
public class EndLoc extends StartLoc { | ||
} |
28 changes: 28 additions & 0 deletions
28
src/main/java/weixin/popular/bean/semantic/semproxy/inner/Semantic.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package weixin.popular.bean.semantic.semproxy.inner; | ||
|
||
/** | ||
* @program: weixin-popular | ||
* @description: | ||
* @author: 01 | ||
* @create: 2018-08-18 13:30 | ||
**/ | ||
public class Semantic { | ||
private Details details; | ||
private String intent; | ||
|
||
public Details getDetails() { | ||
return details; | ||
} | ||
|
||
public void setDetails(Details details) { | ||
this.details = details; | ||
} | ||
|
||
public String getIntent() { | ||
return intent; | ||
} | ||
|
||
public void setIntent(String intent) { | ||
this.intent = intent; | ||
} | ||
} |
Oops, something went wrong.