Blame view

src/main/java/com/huaheng/pc/system/user/domain/UserCompany.java 1.07 KB
tangying authored
1
2
package com.huaheng.pc.system.user.domain;
3
4
5
6
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
tangying authored
7
import io.swagger.annotations.ApiModelProperty;
8
9
import lombok.Data;
tangying authored
10
11
12
13
14
15
16
17
import javax.validation.constraints.*;


/**
 * 用户和货主关联 sys_user_company
 *
 * @author huaheng
 */
18
19
@Data
@TableName(value = "sys_user_company")
tangying authored
20
21
22
public class UserCompany{

    @ApiModelProperty(value = "id")
23
    @TableId(value = "id",type = IdType.AUTO)
tangying authored
24
25
26
27
    private Integer id;

    @NotNull(message="用户ID不能为空")
    @ApiModelProperty(value = "用户ID")
28
    @TableField(value = "userId")
tangying authored
29
30
31
32
    private Integer userId;

    @NotNull(message="公司id不能为空")
    @ApiModelProperty(value = "公司id")
33
    @TableField(value = "companyId")
tangying authored
34
    private Integer companyId;
35
tangying authored
36
37
38

    @NotBlank(message="公司编码不能为空")
    @ApiModelProperty(value = "公司编码")
39
    @TableField(value = "companyCode")
tangying authored
40
41
42
43
44
    private String companyCode;

}