1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package com.caimei.model.po;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.Date;
- /**
- * cm_brand_auth_user
- * @author
- */
- @Data
- public class ClubUserPo {
- /**
- * 机构用户id
- */
- private Integer id;
- /**
- * 供应商用户id
- */
- private Integer authUserId;
- /**
- * 机构id
- */
- private Integer authId;
- /**
- * 添加时间
- */
- private Date addTime;
- /**
- * 姓名
- */
- private String name;
- /**
- * 手机号
- */
- private String mobile;
- /**
- * 手机号
- */
- private String password;
- /**
- * 状态:0停用,1启用
- */
- private Integer status;
- }
|