智慧保安后台管理项目备份
zhongrj
2024-05-24 b5960d1968e007b91d4d33dd7cbb74f1b566f2c1
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
package org.springblade.modules.business.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springblade.modules.business.entity.Business;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 工商信息vo
 * @author zhongrj
 * @since 2021-12-25
 */
@Data
public class BusinessVo extends Business implements Serializable {
 
    /**
     * 分公司统一社会信用代码
     */
    private String creditcode;
 
    /**
     * 分公司成立日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date establishtime;
 
 
    /**
     * 分公司注册资本
     */
    private String registeredcapital;
 
    /**
     * 分公司经营范围
     */
    private String business;
 
    /**
     * 分公司营业执照 url
     */
    private String businessLicense;
 
}