All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.zplatform.appapi.bean.media.article.ArticleSynchronize Maven / Gradle / Ivy

The newest version!
package cn.zplatform.appapi.bean.media.article;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;

/**
 * 同步评论信息
 * 参见 中台API文档 https://wiki.zplatform.cn/pages/server_media_iface.html
 *
 * @author Lilac
 * 2020-04-14
 */
@Builder
@AllArgsConstructor
@Data
public class ArticleSynchronize {
    String title;
    String userId;
    String content;
    String h5content;
    int os;
    String deviceId;
    String ip;
    double longitude;
    double latitude;
    int source;
    String thirdId;
    String thirdExtra;
    Long createdAt;
    int mediaType;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy