package com.zy.acs.manager.manager.entity;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
@TableName("man_area_agv")
|
public class AreaAgv implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* ID
|
*/
|
@ApiModelProperty(value= "ID")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Long id;
|
|
@ApiModelProperty(value= "")
|
private Long areaId;
|
|
@ApiModelProperty(value= "")
|
private Long agvId;
|
|
public AreaAgv() {}
|
|
public AreaAgv(Long areaId,Long agvId) {
|
this.areaId = areaId;
|
this.agvId = agvId;
|
}
|
|
// AreaAgv areaAgv = new AreaAgv(
|
// null, // [非空]
|
// null // [非空]
|
// );
|
|
|
}
|