You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

99 lines
2.8 KiB
Java

package com.kiisoo.ic.employee.entity;
import lombok.Data;
import me.chanjar.weixin.cp.bean.Gender;
/**
* @Description:
* @Auther: yechenhao
* @Date: 2020/4/7 0002 10:06
* @Version: v1
*/
@Data
public class EmployeeDO {
/**
* id
*/
private Long id;
/**
* id
*/
private Long storeId;
/**
* id
* 1~64_-@.
*/
private String userId;
/**
*
*/
private String name;
5 years ago
/**
*
*/
private String cpUserName;
/**
* id,20(idid)
*/
private Long[] departIds;
/**
* 0department[0, 2^32)
*/
private Integer[] orders;
/**
* 0~128
*/
private String position;
/**
* mobile/email
*/
private String mobile;
/**
* 12
*/
private Integer gender;
/**
* 6~64emailmobile/email
*/
private String email;
/**
* 128
*/
private String address;
/**
* mediaidmediaid
*/
private String avatarMediaId;
/**
*
*/
private Integer status;
/**
* /10
*/
private Integer enable;
/**
*
*/
private String alias;
/**
* is_leader_in_dept.
* department10
*/
private Integer[] isLeaderInDept;
/**
* 32-
*/
private String telephone;
/**
*
*/
private String inviteQrCode;
/**
* 使3true
*/
private Boolean toInvite;
private String[] checkbox;
}