mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-22 10:39:36 +08:00
43 lines
854 B
Java
43 lines
854 B
Java
![]() |
package com.ics.admin.domain;
|
|||
|
|
|||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|||
|
import com.ics.common.core.domain.BaseEntity;
|
|||
|
import lombok.Data;
|
|||
|
|
|||
|
/**
|
|||
|
* 企业员工对象 ics_customer_staff
|
|||
|
*
|
|||
|
* @author ics
|
|||
|
* @date 2024-02-19
|
|||
|
*/
|
|||
|
@Data
|
|||
|
@TableName("ics_customer_staff")
|
|||
|
public class IcsCustomerStaff extends BaseEntity<IcsCustomerStaff> {
|
|||
|
private static final long serialVersionUID = 1L;
|
|||
|
|
|||
|
/** 姓名 */
|
|||
|
private String username;
|
|||
|
|
|||
|
/** 电话 */
|
|||
|
private String mobile;
|
|||
|
|
|||
|
/** 企业客户id */
|
|||
|
private Long icsCustomerId;
|
|||
|
|
|||
|
/** 微信openid */
|
|||
|
private String openid;
|
|||
|
|
|||
|
/** 用户头像 */
|
|||
|
private String avatar;
|
|||
|
|
|||
|
/** 用户性别(0男 1女 2未知) */
|
|||
|
private String gender;
|
|||
|
|
|||
|
/** 帐号状态(0正常 1停用) */
|
|||
|
private String status;
|
|||
|
|
|||
|
/** 园区ID */
|
|||
|
private Long parkId;
|
|||
|
|
|||
|
}
|