UserCompany.java
1.19 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
package com.huaheng.pc.system.user.domain;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.*;
/**
* 用户和货主关联 sys_user_company
*
* @author huaheng
*/
public class UserCompany{
@ApiModelProperty(value = "id")
private Integer id;
public void setId(Integer id) { this.id = id; }
public Integer getId() { return this.id; }
@NotNull(message="用户ID不能为空")
@ApiModelProperty(value = "用户ID")
private Integer userId;
public void setUserId(Integer userId) { this.userId = userId; }
public Integer getUserId() { return this.userId; }
@NotNull(message="公司id不能为空")
@ApiModelProperty(value = "公司id")
private Integer companyId;
public void setCompanyId(Integer companyId) { this.companyId = companyId; }
public Integer getCompanyId() { return this.companyId; }
@NotBlank(message="公司编码不能为空")
@ApiModelProperty(value = "公司编码")
private String companyCode;
public void setCompanyCode(String companyCode) { this.companyCode = companyCode == null ? null : companyCode.trim(); }
public String getCompanyCode() { return this.companyCode; }
}