公众号 视频号 商家用户管理 字典标识字段

This commit is contained in:
2024-04-13 15:13:30 +08:00
parent eedc6fe307
commit 78c37b2636
14 changed files with 190 additions and 57 deletions

View File

@@ -0,0 +1,51 @@
/*
* Copyright 2019-2020 Zheng Jie
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.ysk.cashier.vo;
import lombok.Data;
import java.io.Serializable;
/**
* @author Zheng Jie
* @date 2019-6-10 16:32:18
*/
@Data
public class ShopUserInfoVo implements Serializable {
private Integer id;
private Integer isVip;
private String nickName;
private String headImg;
private String telephone;
private Long updatedAt;
public ShopUserInfoVo() {
}
public ShopUserInfoVo(Integer id, Integer isVip, String nickName, String headImg, String telephone, Long updatedAt) {
this.id = id;
this.isVip = isVip;
this.nickName = nickName;
this.headImg = headImg;
this.telephone = telephone;
this.updatedAt = updatedAt;
}
}