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.
36 lines
818 B
Java
36 lines
818 B
Java
package com.engine.organization.entity;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* @description: TODO
|
|
* @author:dxfeng
|
|
* @createTime: 2022/05/11
|
|
* @version: 1.0
|
|
*/
|
|
@Data
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class TopTab {
|
|
private String color;
|
|
private String groupId;
|
|
private Boolean showCount;
|
|
private String title;
|
|
private String viewCondition;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "TopTab{" +
|
|
"color='" + color + '\'' +
|
|
", groupid='" + groupId + '\'' +
|
|
", showcount='" + showCount + '\'' +
|
|
", title='" + title + '\'' +
|
|
", viewcondition='" + viewCondition + '\'' +
|
|
'}';
|
|
}
|
|
}
|