@ -62,7 +62,7 @@ module.exports = dc => {
autoIncrement: false
},
repairAsk: {
type: DataTypes.INTEGER,
type: DataTypes.STRING,
allowNull: true,
defaultValue: null,
comment: "维修要求",
@ -9,7 +9,7 @@ create table patrol_record_issue_handle
repair_unit varchar(255),
start_time timestamp(6) with time zone,
end_time timestamp(6) with time zone,
repair_ask integer,
repair_ask varchar(255),
check_person jsonb,
state integer,
approve_person jsonb,
@ -59,6 +59,8 @@ export const ApiTable = {
addCheckTask: '/addcheckTask',
editCheckTask: '/editcheckTask',
delCheckTask: '/delcheckTask/:id',
addPatrolRecordIssueHandle: 'patrolRecord/issue/handle',
modifyPatrolRecordIssueHandle: 'patrolRecord/issue/handle/{id}',
//协调申请
getCoordinateList: 'risk/coordinate',