package org.jeecg.modules.system.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 用户产线
|
*
|
* @author: LiuS
|
* @create: 2023-03-24 15:39
|
*/
|
@Data
|
@TableName("eam_base_repair_depart_user")
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@ApiModel(value="eam_base_repair_depart_user对象", description="用户维修班组表")
|
public class EamBaseRepairDepartUser implements Serializable {
|
|
private static final long serialVersionUID = -615660545315767149L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
/**
|
* 用户id
|
*/
|
private String userId;
|
/**
|
* 维修班组id
|
*/
|
private String departId;
|
|
/**
|
* 创建人
|
*/
|
private String createBy;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
public EamBaseRepairDepartUser(String id, String userId, String departId) {
|
super();
|
this.id = id;
|
this.userId = userId;
|
this.departId = departId;
|
}
|
|
public EamBaseRepairDepartUser(String id, String departId) {
|
this.userId = id;
|
this.departId = departId;
|
}
|
}
|