package com.consum.base.pojo.request; import java.util.List; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import lombok.Data; /** * @author asus * @version 1.0 * @description: TODO * @date 2023/12/6 13:37 */ @Data @JsonIgnoreProperties(ignoreUnknown = true) public class FinSysTenantUserParam { // 主键 private Long id; // 属性列表 private String userName; private String userCode; private String tenantId; private String createBy; private Long createTime; private String updateBy; private Long updateTime; private Integer sex; private Integer status; private Long seq; private String remark; private Long sysUserId; private Long sysDeptId; private String tenantCode; private String userPhone; private Integer isDelete; private Integer kfStatus; private String agentJid; private String workgroupJid; private String clientNumber; private String clientPwd; private Long supplierId; private String tenantName; private Integer lv; @JsonIgnore private String roleStr; private String avatar; private String email; @JsonIgnore private List roleList; private Boolean isOnline; private String parentCode; // 是否为运维商 如果有运维商id 则代表是,反之不是 private String isSupplier; }