merged private server and console to private-cloud

This commit is contained in:
strawmanbobi
2020-01-12 19:15:08 +08:00
parent 15d977ccd6
commit 90f2d17331
176 changed files with 220265 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function BrandResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = BrandResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function CategoryResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = CategoryResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function CityResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = CityResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function IntegerResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = IntegerResponse;

View File

@@ -0,0 +1,13 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function KeyMatchResponse(status, matchCount, remoteFile) {
this.matchCount = matchCount;
this.remoteFile = remoteFile;
ServiceResponse.call(this, status);
}
module.exports = KeyMatchResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function LoginResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = LoginResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function OperatorResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = OperatorResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function ProtocolResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = ProtocolResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function ProvinceResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = ProvinceResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function RemoteIndexResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = RemoteIndexResponse;

View File

@@ -0,0 +1,11 @@
/**
* Created by Strawmanbobi
* 2016-11-27
*/
function ServiceResponse(status, cause) {
this.status = status;
this.cause = cause;
}
module.exports = ServiceResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function SingleBrandResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = SingleBrandResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function SingleCategoryResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = SingleCategoryResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function StatResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = StatResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function StringResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = StringResponse;

View File

@@ -0,0 +1,12 @@
/**
* Created by strawmanbobi
* 2016-12-24 (Xmas eve)
*/
ServiceResponse = require("./service_response");
function TicketResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = TicketResponse;