修改后端接口

This commit is contained in:
2025-09-25 17:43:54 +08:00
parent 5b6b7e0a96
commit 76b5393182
31 changed files with 2155 additions and 468 deletions

View File

@@ -107,7 +107,11 @@ Role.init({
}, {
sequelize,
tableName: 'bank_roles',
modelName: 'Role'
modelName: 'Role',
timestamps: true,
underscored: true,
createdAt: 'created_at',
updatedAt: 'updated_at'
});
module.exports = Role;