dbd-meeting/ics-admin/src/main/java/com/ics/admin/domain/IcsCustomerStaff.java
st 21d0b3d54f 1、修改小程序登录相关接口,改为企业内部用户接口
2、增加访客数据表合相关接口,访客和企业员工共用一张表
2024-02-25 16:43:09 +08:00

78 lines
1.6 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}