Commit a0269601 by chenjinjing

no message

parent b95faa3d
......@@ -12,7 +12,7 @@ import { BizError } from "../../util/bizError";
* %gte%:大于等于 {列名: {"%gte%": }}
* %lt%:小于 {列名: {"%lt%": }}
* %lte%:小于等于 {列名: {"%lte%": }}
* %between%:查询范围内数据 {列名: {"%between%": ["开始参数", "结束参数"]}} ---BETWEEN 开始参数 AND 结束参数
* %between%:查询范围内数据 {列名: {"%between%": ["开始参数", "结束参数"]}} ---BETWEEN 开始参数 AND 结束参数 列>开始参数 and 列<结束参数
* %notBetween%:查询不在范围内数据 {列名: {"%notBetween%": ["开始参数", "结束参数"]}} ---NOT BETWEEN 开始参数 AND 结束参数
* %orderDesc%: order by DESC {"%orderDesc%": "列名"}
* %limit%: {"%limit%": 数量}
......
......@@ -192,7 +192,7 @@ export const TablesConfig = [
grantingRange: {type:Sequelize.INTEGER, allowNull:false}, //授予范围 枚举
grantingUnit: {type:Sequelize.STRING(100), allowNull:false}, //授予单位/个人
grantTime: {type:Sequelize.DATE, allowNull:false},//授予时间
bId: {type:Sequelize.STRING(500), allowNull:false, defaultValue:'[]'}, //支部表id 外键 [1,2] --多选
bId: {type:Sequelize.INTEGER, allowNull:false}, //支部表id
isUse: {type:Sequelize.BOOLEAN, allowNull:false, defaultValue:true}, //是否使用
},
association: []
......
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