UserCompany.java 1.19 KB
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; }

}