You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
406 B
24 lines
406 B
package com.lpro.iot.bean;
|
|
|
|
import org.codehaus.jackson.map.annotate.JsonSerialize;
|
|
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* 放置一些公共业务字段
|
|
* @author chenrj
|
|
*
|
|
*/
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
|
|
public class IotBaseBean {
|
|
|
|
private String sensor_name ;
|
|
|
|
private Integer scene_id ;
|
|
|
|
private Integer user_id ;
|
|
}
|
|
|