dbd-meeting/ics-admin/src/main/java/com/ics/admin/domain/IcsCustomerStaff.java

78 lines
1.6 KiB
Java
Raw Normal View History

2024-02-25 11:16:55 +08:00
package com.ics.admin.domain;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
2024-02-25 11:16:55 +08:00
import com.ics.common.core.domain.BaseEntity;
import lombok.Data;
import java.util.Date;
2024-02-25 11:16:55 +08:00
/**
* 企业员工对象 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;
2024-02-25 11:16:55 +08:00
}