api-设备新增设备类型字段,是入场还是出场。完善入场逻辑

This commit is contained in:
limqhz
2020-07-22 18:58:39 +08:00
parent 048ccc2d05
commit 6550f5d06b
8 changed files with 253 additions and 92 deletions

View File

@@ -1,5 +1,7 @@
package com.sv.entity;
import com.enums.DeviceType;
import java.io.Serializable;
import java.util.Date;
@@ -36,6 +38,7 @@ public class Device implements Serializable {
private Integer venueType;
private DeviceType deviceType;
/**
* 创建者编号
*/
@@ -241,4 +244,12 @@ public class Device implements Serializable {
public void setVenueType(Integer venueType) {
this.venueType = venueType;
}
public DeviceType getDeviceType() {
return deviceType;
}
public void setDeviceType(DeviceType deviceType) {
this.deviceType = deviceType;
}
}