|
@ -1,8 +1,10 @@
|
|
|
package com.yihu.jw.entity.iot.device;
|
|
|
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
|
|
|
import com.yihu.jw.entity.util.StringFStringEncryptConverter;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Convert;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.io.Serializable;
|
|
@ -161,6 +163,7 @@ public class IotDeviceOrderDO extends UuidIdentityEntityWithOperator implements
|
|
|
this.purchaseUnitName = purchaseUnitName;
|
|
|
}
|
|
|
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
public String getPurchaserName() {
|
|
|
return purchaserName;
|
|
|
}
|
|
@ -169,6 +172,7 @@ public class IotDeviceOrderDO extends UuidIdentityEntityWithOperator implements
|
|
|
this.purchaserName = purchaserName;
|
|
|
}
|
|
|
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
public String getPurchaserPhone() {
|
|
|
return purchaserPhone;
|
|
|
}
|
|
@ -193,6 +197,7 @@ public class IotDeviceOrderDO extends UuidIdentityEntityWithOperator implements
|
|
|
this.supplierName = supplierName;
|
|
|
}
|
|
|
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
public String getSupplierLeader() {
|
|
|
return supplierLeader;
|
|
|
}
|
|
@ -201,6 +206,7 @@ public class IotDeviceOrderDO extends UuidIdentityEntityWithOperator implements
|
|
|
this.supplierLeader = supplierLeader;
|
|
|
}
|
|
|
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
public String getSupplierLeaderPhone() {
|
|
|
return supplierLeaderPhone;
|
|
|
}
|