Commit f173aadb by 王昆

gsb

parent e66a731d
const system = require("../../../system");
const Dao = require("../../dao.base");
class SaasBusinessDao extends Dao {
constructor() {
super(Dao.getModelName(SaasBusinessDao));
}
}
module.exports = SaasBusinessDao;
\ No newline at end of file
const system = require("../../../system");
const settings = require("../../../../config/settings");
const uiconfig = system.getUiConfig2(settings.appKey);
module.exports = (db, DataTypes) => {
return db.define("saasbusiness", {
name: DataTypes.STRING,
domain: DataTypes.STRING,
managerId: DataTypes.INTEGER,
managerMobile: DataTypes.STRING,
}, {
paranoid: true, //假的删除
underscored: true,
version: true,
freezeTableName: true,
//freezeTableName: true,
// define the table's name
tableName: 'saas_business',
validate: {
},
indexes: [
// Create a unique index on email
// {
// unique: true,
// fields: ['email']
// },
//
// // Creates a gin index on data with the jsonb_path_ops operator
// {
// fields: ['data'],
// using: 'gin',
// operator: 'jsonb_path_ops'
// },
//
// // By default index name will be [table]_[fields]
// // Creates a multi column partial index
// {
// name: 'public_by_author',
// fields: ['author', 'status'],
// where: {
// status: 'public'
// }
// },
//
// // A BTREE index with a ordered field
// {
// name: 'title_index',
// method: 'BTREE',
// fields: ['author', {attribute: 'title', collate: 'en_US', order: 'DESC', length: 5}]
// }
]
});
}
\ No newline at end of file
......@@ -5,7 +5,7 @@ const settings = require("../../../../config/settings")
class SaasPlatformUserService extends ServiceBase {
constructor() {
super("user", ServiceBase.getDaoName(SaasPlatformUserService));
this.saasDao = system.getObject("db.saas.saasDao");
this.saasbusinessDao = system.getObject("db.saas.saasbusinessDao");
}
// 内部维护使用
......@@ -32,7 +32,7 @@ class SaasPlatformUserService extends ServiceBase {
let pwd = await this.getEncryptStr(password);
console.log(`密码加密:${password} -------> ${pwd}`);
let saas = await this.saasDao.findById(saas_id);
let saas = await this.saasbusinessDao.findById(saas_id);
if(!saas) {
return system.getResult(null, "saas不存在");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment