|
@@ -272,7 +272,6 @@ public class serviceorder extends Controller {
|
|
|
}
|
|
|
|
|
|
@API(title = "服务申请单详情(不验证token))", apiversion = R.ID20230217133003.v1.class, accesstoken = false)
|
|
|
- @CACHEING
|
|
|
public String queryserviceorderMainWithoutToken() throws YosException {
|
|
|
Long sa_serviceorderid = content.getLong("sa_serviceorderid");
|
|
|
SQLFactory sqlFactory = new SQLFactory(this, "服务申请单详情查询2");
|
|
@@ -374,7 +373,6 @@ public class serviceorder extends Controller {
|
|
|
|
|
|
|
|
|
@API(title = "查询服务申请单列表(不验证token)", apiversion = R.ID20230217100703.v1.class, accesstoken = false)
|
|
|
- @CACHEING
|
|
|
public String queryserviceorderListWithoutToken() throws YosException {
|
|
|
StringBuffer where = new StringBuffer(" 1=1 ");
|
|
|
boolean isadmin = content.getBooleanValue("isadmin");
|
|
@@ -580,7 +578,6 @@ public class serviceorder extends Controller {
|
|
|
}
|
|
|
|
|
|
@API(title = "发送手机验证码", apiversion = R.ID20230215173103.v1.class, accesstoken = false)
|
|
|
- @CACHEING
|
|
|
public String sendMessage() throws YosException {
|
|
|
String customerphone = content.getStringValue("customerphone");
|
|
|
if (!Pattern.matches("^1([358][0-9]|4[579]|66|7[0135678]|9[89])[0-9]{8}$", customerphone)) {
|
|
@@ -608,7 +605,6 @@ public class serviceorder extends Controller {
|
|
|
* 验证码校验
|
|
|
**/
|
|
|
@API(title = "发送手机验证码", apiversion = R.ID20230215173203.v1.class, accesstoken = false)
|
|
|
- @CACHEING
|
|
|
public String checkVerificationCode() throws YosException {
|
|
|
String customerphone = content.getStringValue("customerphone");
|
|
|
String code = content.getStringValue("code");
|