|
@ -0,0 +1,37 @@
|
|
|
package com.yihu.iot.service.analyzer;
|
|
|
|
|
|
import com.yihu.jw.entity.UuidIdentityEntity;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
@Entity
|
|
|
@Table(name = "wlyy_iot_tz_dict")
|
|
|
public class WlyyIotTzDict extends UuidIdentityEntity implements Serializable {
|
|
|
|
|
|
@Column(name = "code")
|
|
|
private String code;
|
|
|
|
|
|
@Column(name = "name")
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
|
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
|
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
}
|