改造授权接口
parent
e7197c5d43
commit
f7e1a6002b
@ -0,0 +1,75 @@
|
|||||||
|
package com.ms.api.bo;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ShopBO {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* shop_id
|
||||||
|
*/
|
||||||
|
private Long shopId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* shop_name
|
||||||
|
*/
|
||||||
|
private String shopName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* access_token
|
||||||
|
*/
|
||||||
|
private String accessToken;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* refresh_token
|
||||||
|
*/
|
||||||
|
private String refreshToken;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* expires_in
|
||||||
|
*/
|
||||||
|
private String expiresIn;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* last_login_ip
|
||||||
|
*/
|
||||||
|
private String lastLoginIp;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* total_product
|
||||||
|
*/
|
||||||
|
private Integer totalProduct;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* total_move_detail
|
||||||
|
*/
|
||||||
|
private Integer totalMoveDetail;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* app_version
|
||||||
|
*/
|
||||||
|
private String appVersion;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gmt_last_login
|
||||||
|
*/
|
||||||
|
private Date gmtLastLogin;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gmt_expire
|
||||||
|
*/
|
||||||
|
private Date gmtExpire;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gmt_create
|
||||||
|
*/
|
||||||
|
private Date gmtCreate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gmt_modified
|
||||||
|
*/
|
||||||
|
private Date gmtModified;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue