package com.moral.api.pojo.vo.organization; 
 | 
  
 | 
import com.fasterxml.jackson.annotation.JsonInclude; 
 | 
import com.moral.api.pojo.dto.organization.OrganizationDTO; 
 | 
import com.moral.api.pojo.vo.user.UserVO; 
 | 
import com.moral.constant.ResponseCodeEnum; 
 | 
import lombok.Data; 
 | 
  
 | 
/** 
 | 
 * @ClassName OrganizationInsertVO 
 | 
 * @Description TODO 
 | 
 * @Author 陈凯裕 
 | 
 * @Date 2021/3/23 16:58 
 | 
 * @Version TODO 
 | 
 **/ 
 | 
@Data 
 | 
//@JsonInclude(JsonInclude.Include.NON_EMPTY) 
 | 
public class OrganizationVO { 
 | 
  
 | 
    private Integer id; 
 | 
  
 | 
    private Integer parentId; 
 | 
  
 | 
    private Integer adminUserId; 
 | 
  
 | 
    private String name; 
 | 
  
 | 
    private String parentName; 
 | 
  
 | 
    private Integer provinceCode; 
 | 
  
 | 
    private Integer cityCode; 
 | 
  
 | 
    private Integer areaCode; 
 | 
  
 | 
    private String ProvinceCityAreaName; 
 | 
  
 | 
    private Integer locationLevelCode; 
 | 
  
 | 
    private String locationLevelName; 
 | 
  
 | 
    private String address; 
 | 
  
 | 
    private String phone; 
 | 
  
 | 
    private String email; 
 | 
  
 | 
    private String wechat; 
 | 
  
 | 
    private String adminUserAccount; 
 | 
  
 | 
    private String expireTime; 
 | 
  
 | 
    private String createTime; 
 | 
  
 | 
    private String updateTime; 
 | 
  
 | 
    private String isDelete; 
 | 
  
 | 
    private UserVO adminUser; 
 | 
  
 | 
} 
 |