绫昏鏄
+ * + * @author 寮犲崕娲 2017/2/22 20:51 + * @version V1.2.0 + * @name Girls + */ + + +public class Girl implements Parcelable { + + private String _id; + private String createdAt; + private String desc; + private String publishedAt; + private String source; + private String type; + private String url; + private boolean used; + private String who; + + public void set_id(String _id) { + this._id = _id; + } + + public void setCreatedAt(String createdAt) { + this.createdAt = createdAt; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public void setPublishedAt(String publishedAt) { + this.publishedAt = publishedAt; + } + + public void setSource(String source) { + this.source = source; + } + + public void setType(String type) { + this.type = type; + } + + public void setUrl(String url) { + this.url = url; + } + + public void setUsed(boolean used) { + this.used = used; + } + + public void setWho(String who) { + this.who = who; + } + + public String get_id() { + return _id; + } + + public String getCreatedAt() { + return createdAt; + } + + public String getDesc() { + return desc; + } + + public String getPublishedAt() { + return publishedAt; + } + + public String getSource() { + return source; + } + + public String getType() { + return type; + } + + public String getUrl() { + return url; + } + + public boolean isUsed() { + return used; + } + + public String getWho() { + return who; + } + + + @Override + public int describeContents() { + return 0; + } + + @Override + public void writeToParcel(Parcel dest, int flags) { + dest.writeString(this._id); + dest.writeString(this.createdAt); + dest.writeString(this.desc); + dest.writeString(this.publishedAt); + dest.writeString(this.source); + dest.writeString(this.type); + dest.writeString(this.url); + dest.writeByte(this.used ? (byte) 1 : (byte) 0); + dest.writeString(this.who); + } + + public Girl() { + } + + protected Girl(Parcel in) { + this._id = in.readString(); + this.createdAt = in.readString(); + this.desc = in.readString(); + this.publishedAt = in.readString(); + this.source = in.readString(); + this.type = in.readString(); + this.url = in.readString(); + this.used = in.readByte() != 0; + this.who = in.readString(); + } + + public static final Creator绫昏鏄
+ * + * @author 寮犲崕娲 2017/2/15 20:09 + * @version V1.2.0 + * @name GirlsApplication + */ +public class CardGirlApplication extends BaseApplication { + + @Override + public void onCreate() { + super.onCreate(); + } +} diff --git a/module_card_girl/src/main/module/AndroidManifest.xml b/module_card_girl/src/main/module/AndroidManifest.xml new file mode 100644 index 0000000..2d5070e --- /dev/null +++ b/module_card_girl/src/main/module/AndroidManifest.xml @@ -0,0 +1,24 @@ + +