Commit 432aa037 by 宋毅

tj

parent 9ca660cc
......@@ -14,13 +14,13 @@ module.exports = (db, DataTypes) => {
},
op: DataTypes.STRING,
content: DataTypes.STRING(5000),
resultInfo: DataTypes.TEXT,
resultInfo: DataTypes.TEXT('long'),
clientIp: DataTypes.STRING,
agent: {
type: DataTypes.STRING,
allowNull: true,
},
opTitle: DataTypes.STRING(500),
opTitle: DataTypes.TEXT,
}, {
paranoid: false,//假的删除
underscored: true,
......
......@@ -13,8 +13,8 @@ module.exports = (db, DataTypes) => {
defaultValue: "info",
},
op: DataTypes.STRING,
content: DataTypes.STRING(5000),
resultInfo: DataTypes.TEXT,
content: DataTypes.TEXT,
resultInfo: DataTypes.TEXT('long'),
returnTypeName:DataTypes.STRING,
returnType : {
type: DataTypes.ENUM,
......
......@@ -520,7 +520,7 @@ class OrderTmProductService extends ServiceBase {
* @param {*} params 格式:{channelServiceNo:XX, app:{ appId:XX}}
*/
async getTmOrderList(params, req) {//商标交付列表
var pageSize = Number(params.pageSize || 10);
var pageSize = Number(params.pageSize || 20);
var pageInde = Number(params.pageInde || 1);
var from = pageInde == 1 ? 0 : Number((pageInde - 1) * pageSize);
if (pageSize > 50) {
......
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