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.
52 lines
926 B
Java
52 lines
926 B
Java
package com.engine.organization.entity.map;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.sql.Date;
|
|
|
|
/**
|
|
* @author:dxfeng
|
|
* @createTime: 2022/09/01
|
|
* @version: 1.0
|
|
*/
|
|
@Data
|
|
public class JclOrgMap {
|
|
Integer id;
|
|
Integer fType;
|
|
Integer fObjId;
|
|
Integer fEcId;
|
|
String uuid;
|
|
Integer fClass;
|
|
String fClassName;
|
|
String fNumber;
|
|
String fName;
|
|
Integer fLeader;
|
|
String fLeaderImg;
|
|
String fLeaderName;
|
|
Integer fLeaderJobId;
|
|
String fLeaderJob;
|
|
String fLeaderLv;
|
|
String fLeaderSt;
|
|
Integer fParentId;
|
|
Integer fObjParentId;
|
|
Integer fPlan;
|
|
Integer fOnJob;
|
|
Integer fIsVitual;
|
|
Date fDateBegin;
|
|
Date fDateEnd;
|
|
|
|
public Integer getFPlan() {
|
|
if (null == fPlan) {
|
|
fPlan = 0;
|
|
}
|
|
return fPlan;
|
|
}
|
|
|
|
public Integer getFOnJob() {
|
|
if (null == fOnJob) {
|
|
fOnJob = 0;
|
|
}
|
|
return fOnJob;
|
|
}
|
|
}
|