mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-15 04:02:10 +08:00
23 lines
297 B
JavaScript
23 lines
297 B
JavaScript
/**
|
|
*
|
|
* @type {{foo(*)}}
|
|
*/
|
|
'use strict';
|
|
module.exports = {
|
|
success(msg, data, total) {
|
|
this.body = {
|
|
success: true,
|
|
msg,
|
|
result: data,
|
|
total,
|
|
};
|
|
},
|
|
failure(msg, data) {
|
|
this.body = {
|
|
success: false,
|
|
msg,
|
|
result: data,
|
|
};
|
|
}
|
|
};
|