kaiyu
2021-05-10 275f338495f3e694ccf6fa909fb78b949a67921c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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 expireTime;
 
    private String createTime;
 
    private String updateTime;
 
    private String isDelete;
 
    private UserVO adminUser;
 
}