Files
scrq-hd/.svn/pristine/25/25954b53b102d69e93bcc33c0d26bdb653f2605f.svn-base
2025-07-03 10:34:04 +08:00

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;
}