- package com.haochuan.dudutoy;
- import com.google.gson.annotations.SerializedName;
- import java.io.Serializable;
- /**
- * Created by yunhaipiaodi on 2017/9/20.
- */
- public class StyleData implements Serializable {
- @SerializedName("code") public int code = 0;
- @SerializedName("msg") public String msg = "";
- }
|