37 lines
644 B
Plaintext
37 lines
644 B
Plaintext
package com.cmeim.stock.po;
|
|
|
|
import lombok.Data;
|
|
import javax.persistence.*;
|
|
import java.io.Serializable;
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
@Data
|
|
@Entity
|
|
@Table(name = "sensor_store_bind")
|
|
public class SensorStoreBind implements Serializable {
|
|
|
|
/**
|
|
* null
|
|
*/
|
|
@Id
|
|
@GeneratedValue(strategy=GenerationType.IDENTITY)
|
|
@Column(name = "id")
|
|
@ApiParam(value = "null")
|
|
private Long id;
|
|
|
|
/**
|
|
* 传感器
|
|
*/
|
|
@Column(name = "sensor")
|
|
@ApiParam(value = "传感器")
|
|
private String sensor;
|
|
|
|
/**
|
|
* 库位编码
|
|
*/
|
|
@Column(name = "store_code")
|
|
@ApiParam(value = "库位编码")
|
|
private String storeCode;
|
|
|
|
}
|