【组织实体对象】

This commit is contained in:
weizhihong 2022-09-29 16:32:53 +08:00
parent 9e70e4d223
commit 794a86e690
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,18 @@
package club.joylink.rtss.entity.org;
import lombok.Data;
import java.time.LocalDateTime;
@Data
public class OrgProject {
private Long id;
private Long orgId;
private String projectCode;
private Long creatorId;
private LocalDateTime createTime;
}

View File

@ -149,7 +149,7 @@ public class LoginUserInfoVO {
*/
public Long getTopOrgId() {
if (orgProjectVO == null) {
return 0L;
return null;
}
return orgProjectVO.getTopOrgId();
}