类com.alibaba.fastjson.annotation.JSONCreator源码实例Demo

下面列出了怎么用com.alibaba.fastjson.annotation.JSONCreator的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: jshERP   文件: ResponseCode.java
/**
 *
 * @param code
 * @param data
 */
@JSONCreator
public ResponseCode(@JSONField(name = "code") int code, @JSONField(name = "data")Object data) {
    this.code = code;
    this.data = data;
}
 
 类所在包
 类方法
 同包方法