package com.withiter.quhao.vo; public class Merchant{ public String id; public String merchantImage = ""; public String merchantImageBig; public String name; public String address; public String phone; public String cateType; public String grade; public String averageCost; public String tags; public Integer kouwei; public Integer huanjing; public Integer fuwu; public Integer xingjiabi; public String teses; public String nickName; public String description; public String openTime; public String closeTime; public Integer marketCount; public boolean enable; public String joinedDate; public double distance; public boolean online; /** * 经度 */ public double lat; /** * 纬度 */ public double lng; public boolean isAttention; public int openNum; /** latest one comment **/ public String commentAverageCost; public int commentXingjiabi; public int commentKouwei; public int commentHuanjing; public int commentFuwu; public String commentContent; public String commentDate; public boolean youhuiExist; public String dianpingFen = "0"; // 显示大众点评评分 0 表示不显示 public String dianpingLink = ""; // 大众点评商家链接 /** latest one comment **/ public Merchant(String id, String merchantImage, String name, String address, String phone, String cateType, String grade, String averageCost, String tags, Integer kouwei, Integer huanjing, Integer fuwu, Integer xingjiabi, String teses, String nickName, String description, String openTime, String closeTime, Integer marketCount, boolean enable, String joinedDate,double lat,double lng,double distance,boolean youhuiExist,boolean online) { this.id = id; this.merchantImage = merchantImage; this.name = name; this.address = address; this.phone = phone; this.cateType = cateType; this.grade = grade; this.averageCost = averageCost; this.tags = tags; this.kouwei = kouwei; this.huanjing = huanjing; this.fuwu = fuwu; this.xingjiabi = xingjiabi; this.teses = teses; this.nickName = nickName; this.description = description; this.openTime = openTime; this.closeTime = closeTime; this.marketCount = marketCount; this.enable = enable; this.joinedDate = joinedDate; this.lat = lat; this.lng = lng; this.distance = distance; this.youhuiExist = youhuiExist; this.online = online; } public Merchant() { } }