Commit a756732f by 蒋勇

d

parent 63efed24
......@@ -2,6 +2,73 @@
var str=new Date("2020-02-21T14:18:33.000Z").toLocaleDateString();
console.log(str);
const system=require("../../../system");
const settings=require("../../../../config/settings");
const uiconfig=system.getUiConfig2(settings.appKey);
module.exports = (db, DataTypes) => {
return db.define("uploadbatch", {
userid://用户ID,
companyname://公司名称,
name://任务名称,
batchstatuscode:任务状态编码,
batchstatusname://任务状态,
taxtypecode:{//公司类型--S/G,
taxtypename:{//公司类型--S/G,
timetypecode: //时间类型编码,
timetypename//时间类型名称,
batchdate://检测的月度
accountstandardcode://会计准则
accountstandardname://会计准则,
wordrpturl://报告地址
},{
paranoid: true,//假的删除
underscored: true,
version: true,
freezeTableName: true,
//freezeTableName: true,
// define the table's name
tableName: 'upload_batch',
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}]
// }
]
});
}
// var x=isNaN("2")
// console.log(x);
......
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