mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-22 02:29:36 +08:00
78 lines
1.6 KiB
Java
78 lines
1.6 KiB
Java
package com.ics.admin.domain;
|
||
|
||
import com.baomidou.mybatisplus.annotation.TableName;
|
||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||
import com.ics.common.core.domain.BaseEntity;
|
||
import lombok.Data;
|
||
|
||
import java.util.Date;
|
||
|
||
/**
|
||
* 企业员工对象 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;
|
||
|
||
/**证件类型*/
|
||
private String cardType;
|
||
|
||
/**证件号码**/
|
||
private String cardNo;
|
||
|
||
/**来访时间*/
|
||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||
private Date visitTime;
|
||
|
||
/**离开时间**/
|
||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||
private Date leaveTime;
|
||
|
||
/**来访是由*/
|
||
private String visitContent;
|
||
|
||
/**被访问人姓名**/
|
||
private String toName;
|
||
|
||
/**被访问人号码*/
|
||
private String toPhone;
|
||
|
||
/**被访问单位名称*/
|
||
private String toCustomer;
|
||
|
||
/**被访问单位id**/
|
||
private String toCustomerId;
|
||
|
||
/**数据类型,1企业员工,2临时访客*/
|
||
private String dataType;
|
||
|
||
}
|