kaiyu
2021-05-12 4ad2f089780e34bfe0611b99285b76c2d30fa0f7
screen-manage/src/main/java/com/moral/api/pojo/vo/organization/OrganizationVO.java
@@ -2,6 +2,7 @@
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;
@@ -13,7 +14,7 @@
 * @Version TODO
 **/
@Data
@JsonInclude(JsonInclude.Include.NON_EMPTY)
//@JsonInclude(JsonInclude.Include.NON_EMPTY)
public class OrganizationVO {
    private Integer id;
@@ -24,17 +25,19 @@
    private String name;
    private String parentName;
    private Integer provinceCode;
    private Integer cityCode;
    private Integer areaCode;
    private Long townCode;
    private String ProvinceCityAreaName;
    private Long villageCode;
    private Integer locationLevelCode;
    private String locationLevel;
    private String locationLevelName;
    private String address;
@@ -44,6 +47,8 @@
    private String wechat;
    private String adminUserAccount;
    private String expireTime;
    private String createTime;
@@ -52,4 +57,6 @@
    private String isDelete;
    private UserVO adminUser;
}