|
@ -37,6 +37,7 @@ public class ServicePackageSignRecordDO extends UuidIdentityEntityWithCreateTime
|
|
|
private String serviceAddress;//服务地址
|
|
|
private String serveLat;//服务地址纬度
|
|
|
private String serveLon;//服务地址经度
|
|
|
private String address;//详细地址
|
|
|
private String remark;//备注说明
|
|
|
private String refuseType;//拒绝原因 1基本资料错误 2超出服务范围 3签约用户已满 0其他 字典(sign_refuse_type)
|
|
|
private String refuseReason;//拒绝说明
|
|
@ -368,4 +369,13 @@ public class ServicePackageSignRecordDO extends UuidIdentityEntityWithCreateTime
|
|
|
public void setPrice(BigDecimal price) {
|
|
|
this.price = price;
|
|
|
}
|
|
|
|
|
|
@Column(name = "address")
|
|
|
public String getAddress() {
|
|
|
return address;
|
|
|
}
|
|
|
|
|
|
public void setAddress(String address) {
|
|
|
this.address = address;
|
|
|
}
|
|
|
}
|