开发微信打卡系统
This commit is contained in:
@ -12,7 +12,7 @@ import com.stdiet.common.core.domain.BaseEntity;
|
||||
* 微信用户记录对象 sys_wx_user_log
|
||||
*
|
||||
* @author wonder
|
||||
* @date 2020-11-28
|
||||
* @date 2020-11-29
|
||||
*/
|
||||
public class SysWxUserLog extends BaseEntity
|
||||
{
|
||||
@ -34,34 +34,32 @@ public class SysWxUserLog extends BaseEntity
|
||||
private String phone;
|
||||
|
||||
/** 睡觉时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "睡觉时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date sleepTime;
|
||||
@Excel(name = "睡觉时间")
|
||||
private String sleepTime;
|
||||
|
||||
/** 起床时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
@Excel(name = "起床时间", width = 30, dateFormat = "yyyy-MM-dd")
|
||||
private Date wakeupTime;
|
||||
@Excel(name = "起床时间")
|
||||
private String wakeupTime;
|
||||
|
||||
/** 运动情况 */
|
||||
@Excel(name = "运动情况")
|
||||
private Long sport;
|
||||
/** 运动情况(Y是 N否) */
|
||||
@Excel(name = "运动情况", readConverterExp = "Y=是,N=否")
|
||||
private String sport;
|
||||
|
||||
/** 用户头像 */
|
||||
@Excel(name = "用户头像")
|
||||
private String avatarUrl;
|
||||
|
||||
/** 饮食情况 */
|
||||
@Excel(name = "饮食情况")
|
||||
private Long diet;
|
||||
/** 饮食情况(Y是 N否) */
|
||||
@Excel(name = "饮食情况", readConverterExp = "Y=是,N=否")
|
||||
private String diet;
|
||||
|
||||
/** 熬夜失眠(Y是 N否) */
|
||||
@Excel(name = "熬夜失眠", readConverterExp = "Y=是,N=否")
|
||||
private String insomnia;
|
||||
|
||||
/** 排便情况 */
|
||||
@Excel(name = "排便情况")
|
||||
private Long defecation;
|
||||
/** 排便情况(Y是 N否) */
|
||||
@Excel(name = "排便情况", readConverterExp = "Y=是,N=否")
|
||||
private String defecation;
|
||||
|
||||
/** 饮水量 */
|
||||
@Excel(name = "饮水量")
|
||||
@ -103,30 +101,30 @@ public class SysWxUserLog extends BaseEntity
|
||||
{
|
||||
return phone;
|
||||
}
|
||||
public void setSleepTime(Date sleepTime)
|
||||
public void setSleepTime(String sleepTime)
|
||||
{
|
||||
this.sleepTime = sleepTime;
|
||||
}
|
||||
|
||||
public Date getSleepTime()
|
||||
public String getSleepTime()
|
||||
{
|
||||
return sleepTime;
|
||||
}
|
||||
public void setWakeupTime(Date wakeupTime)
|
||||
public void setWakeupTime(String wakeupTime)
|
||||
{
|
||||
this.wakeupTime = wakeupTime;
|
||||
}
|
||||
|
||||
public Date getWakeupTime()
|
||||
public String getWakeupTime()
|
||||
{
|
||||
return wakeupTime;
|
||||
}
|
||||
public void setSport(Long sport)
|
||||
public void setSport(String sport)
|
||||
{
|
||||
this.sport = sport;
|
||||
}
|
||||
|
||||
public Long getSport()
|
||||
public String getSport()
|
||||
{
|
||||
return sport;
|
||||
}
|
||||
@ -139,12 +137,12 @@ public class SysWxUserLog extends BaseEntity
|
||||
{
|
||||
return avatarUrl;
|
||||
}
|
||||
public void setDiet(Long diet)
|
||||
public void setDiet(String diet)
|
||||
{
|
||||
this.diet = diet;
|
||||
}
|
||||
|
||||
public Long getDiet()
|
||||
public String getDiet()
|
||||
{
|
||||
return diet;
|
||||
}
|
||||
@ -157,12 +155,12 @@ public class SysWxUserLog extends BaseEntity
|
||||
{
|
||||
return insomnia;
|
||||
}
|
||||
public void setDefecation(Long defecation)
|
||||
public void setDefecation(String defecation)
|
||||
{
|
||||
this.defecation = defecation;
|
||||
}
|
||||
|
||||
public Long getDefecation()
|
||||
public String getDefecation()
|
||||
{
|
||||
return defecation;
|
||||
}
|
||||
|
@ -0,0 +1,9 @@
|
||||
package com.stdiet.custom.page;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WxCurUserLogInfo implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,67 @@
|
||||
package com.stdiet.custom.page;
|
||||
|
||||
import com.stdiet.common.utils.DateUtils;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class WxServeInfo implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String serveTime;
|
||||
|
||||
private String serveStatus;
|
||||
|
||||
private String startTime;
|
||||
|
||||
private String weight;
|
||||
|
||||
public String getServeTime() {
|
||||
return serveTime;
|
||||
}
|
||||
|
||||
public void setServeTime(String serveTime) {
|
||||
this.serveTime = serveTime;
|
||||
}
|
||||
|
||||
public String getServeStatus() {
|
||||
return serveStatus;
|
||||
}
|
||||
|
||||
public void setServeStatus(String serveStatus) {
|
||||
if (serveStatus.equals("0")) {
|
||||
this.serveStatus = "进行中";
|
||||
} else if (serveStatus.equals("1")) {
|
||||
this.serveStatus = "暂停";
|
||||
} else if (serveStatus.equals("")) {
|
||||
this.serveStatus = "已完成";
|
||||
}
|
||||
}
|
||||
|
||||
public String getStartTime() {
|
||||
return startTime;
|
||||
}
|
||||
|
||||
public void setStartTime(Date startTime) {
|
||||
this.startTime = DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD, startTime);
|
||||
}
|
||||
|
||||
public String getWeight() {
|
||||
return weight;
|
||||
}
|
||||
|
||||
public void setWeight(BigDecimal weight) {
|
||||
this.weight = weight.toString() + "kg";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "WxServeInfo{" +
|
||||
"serveTime='" + serveTime + '\'' +
|
||||
", serveStatus='" + serveStatus + '\'' +
|
||||
", startTime='" + startTime + '\'' +
|
||||
", weight='" + weight + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -58,4 +58,6 @@ public interface ISysWxUserInfoService
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteSysWxUserInfoById(String openid);
|
||||
|
||||
|
||||
}
|
@ -34,6 +34,7 @@
|
||||
<if test="appid != null and appid != ''"> and appid = #{appid}</if>
|
||||
<if test="phone != null and phone != ''"> and phone = #{phone}</if>
|
||||
</where>
|
||||
order by create_time asc
|
||||
</select>
|
||||
|
||||
<select id="selectSysWxUserLogById" parameterType="String" resultMap="SysWxUserLogResult">
|
||||
|
Reference in New Issue
Block a user