Commit 653b6b2c by 王悦

add type reason

parent 6635db4c
...@@ -70,6 +70,8 @@ module.exports = (db, DataTypes) => { ...@@ -70,6 +70,8 @@ module.exports = (db, DataTypes) => {
}, },
tm_regist_day:DataTypes.STRING(200), tm_regist_day:DataTypes.STRING(200),
tm_ncl_third:DataTypes.STRING(200), tm_ncl_third:DataTypes.STRING(200),
type: DataTypes.STRING, //转让类型
reason: DataTypes.STRING, //转让原因
}, { }, {
paranoid: true,//假的删除 paranoid: true,//假的删除
underscored: true, underscored: true,
......
...@@ -887,7 +887,9 @@ class TrademarktransactionService extends ServiceBase { ...@@ -887,7 +887,9 @@ class TrademarktransactionService extends ServiceBase {
thirdClassification: tminfos[i].tm_ncl_third, thirdClassification: tminfos[i].tm_ncl_third,
tmIcon: tminfos[i].pic_url, tmIcon: tminfos[i].pic_url,
tmName: tminfos[i].name, tmName: tminfos[i].name,
tmNumber: tminfos[i].code tmNumber: tminfos[i].code,
Type: tminfos[i].type,
Reason: tminfos[i].reason
} }
sources.push(source); sources.push(source);
} }
......
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