Sign in

CNLive Android Team / cnliveAssistant · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • cnliveAssistant
  • ..
  • bean
  • SemanticResult.java
  • 初始
    ed3b99c2
    YangShuai authored
    2021-05-06 14:26:22 +0800  
    Browse Code »
SemanticResult.java 254 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.ys.yslibrary.bean;

import org.json.JSONObject;

/**
 * AIUI语义结果
 */

public class SemanticResult {
    public int rc;
    public String service;
    public String answer;
    public JSONObject data;
    public JSONObject semantic;
}