api-设备新增设备类型字段,是入场还是出场。完善入场逻辑
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user