CompanyDTO.java
1.2 KB
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
package com.aigeo.company.dto;
import com.aigeo.common.enums.CompanyStatus;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.time.LocalDateTime;
/**
* 公司DTO
*/
@Data
@Schema(description = "公司数据传输对象")
public class CompanyDTO {
@Schema(description = "公司ID")
private Integer id;
@Schema(description = "公司名称")
private String name;
@Schema(description = "公司域名")
private String domain;
@Schema(description = "公司状态")
private CompanyStatus status;
@Schema(description = "试用到期日")
private LocalDateTime trialExpiryDate;
@Schema(description = "企业默认设置(JSON)")
private String defaultSettings;
@Schema(description = "账单邮箱")
private String billingEmail;
@Schema(description = "联系电话")
private String contactPhone;
@Schema(description = "公司地址")
private String address;
@Schema(description = "公司Logo URL")
private String logoUrl;
@Schema(description = "创建时间")
private LocalDateTime createdAt;
@Schema(description = "最后更新时间")
private LocalDateTime updatedAt;
}