liujie
2023-05-15 6225c37d2f53adf26daf6b4859af5fb5c6fad088
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
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
@Data
public class  TCompanyDto {
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 简介
     */
    private String describe;
    /**
     * 头像
     */
    private String headImg;
    /**
     * 名称
     */
    private String name;
 
    @TableField("scac_code")
    private String scacCode;
    /**
     * 联系人手机号
     */
    @TableField("contact_phone")
    private String contactPhone;
    /**
     * 邮箱
     */
    @TableField("contact_email")
    private String contactEmail;
    /**
     * 地址
     */
    private String address;
    /**
     * mc_number
     */
    @TableField("mc_number")
    private Integer mcNumber;
    private String usdot;
    @TableField("set_up_the_time")
    private String setUpTheTime;
    @TableField("logistics_contact_name")
    private String logisticsContactName;
    @TableField("logistics_contact_email")
    private String logisticsContactEmail;
    /**
     * 账号
     */
    private String account;
    private String password;
    /**
     * 过期时间
     */
    @TableField("expiration_time")
    private Date expirationTime;
    /**
     * 0 申请 1通过 2不通过
     */
    private Integer status;
 
    private Integer work;
    private List<TCompanyService> list;
}