package com.taoke.autopay.vo;
|
|
import java.util.Date;
|
|
/**
|
* @author hxh
|
* @title: WxUserVO
|
* @description: TODO
|
* @date 2024/6/29 13:21
|
*/
|
public class WxUserVO {
|
private Long id;
|
private Date createTime;
|
private Date loginTime;
|
private WxUserOrderSettingVO orderSetting;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getLoginTime() {
|
return loginTime;
|
}
|
|
public void setLoginTime(Date loginTime) {
|
this.loginTime = loginTime;
|
}
|
|
public WxUserOrderSettingVO getOrderSetting() {
|
return orderSetting;
|
}
|
|
public void setOrderSetting(WxUserOrderSettingVO orderSetting) {
|
this.orderSetting = orderSetting;
|
}
|
|
|
}
|