{
  "openapi": "3.0.0",
  "info": {
    "title": "iplanner",
    "version": "0.0.1",
    "description": "iplanner",
    "contact": {
      "name": "onepiecewyz",
      "email": "yzwang@fjirsm.ac.cn"
    }
  },
  "paths": {
    "/change-password": {
      "post": {
        "x-controller-name": "LoginController",
        "x-operation-name": "changePassword",
        "tags": [
          "LoginController"
        ],
        "responses": {
          "200": {
            "description": "Return value of LoginController.changePassword"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "oldPassword": {
                    "type": "string"
                  },
                  "newPassword": {
                    "type": "string"
                  },
                  "userId": {
                    "type": "number"
                  }
                },
                "required": [
                  "newPassword"
                ]
              }
            }
          }
        },
        "operationId": "LoginController.changePassword"
      }
    },
    "/login": {
      "post": {
        "x-controller-name": "LoginController",
        "x-operation-name": "login",
        "tags": [
          "LoginController"
        ],
        "responses": {
          "200": {
            "description": "Login success"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "username": {
                    "type": "string"
                  },
                  "password": {
                    "type": "string"
                  }
                },
                "required": [
                  "username",
                  "password"
                ]
              }
            }
          }
        },
        "operationId": "LoginController.login"
      }
    },
    "/m/{table}/count": {
      "get": {
        "x-controller-name": "MssqlCrudController",
        "x-operation-name": "count",
        "tags": [
          "MssqlCrudController"
        ],
        "responses": {
          "200": {
            "description": "MSSQL model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "table",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "MssqlRow.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<MssqlRow>"
                }
              }
            }
          }
        ],
        "operationId": "MssqlCrudController.count"
      }
    },
    "/m/{table}/{id}": {
      "put": {
        "x-controller-name": "MssqlCrudController",
        "x-operation-name": "replaceById",
        "tags": [
          "MssqlCrudController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "MSSQL PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "table",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "MssqlCrudController.replaceById"
      },
      "patch": {
        "x-controller-name": "MssqlCrudController",
        "x-operation-name": "updateById",
        "tags": [
          "MssqlCrudController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "MSSQL PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "table",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "MssqlCrudController.updateById"
      },
      "get": {
        "x-controller-name": "MssqlCrudController",
        "x-operation-name": "findById",
        "tags": [
          "MssqlCrudController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "MSSQL model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "table",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MssqlRow.Filter"
                }
              }
            }
          }
        ],
        "operationId": "MssqlCrudController.findById"
      },
      "delete": {
        "x-controller-name": "MssqlCrudController",
        "x-operation-name": "deleteById",
        "tags": [
          "MssqlCrudController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "MSSQL DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "table",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "MssqlCrudController.deleteById"
      }
    },
    "/m/{table}": {
      "post": {
        "x-controller-name": "MssqlCrudController",
        "x-operation-name": "create",
        "tags": [
          "MssqlCrudController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "MSSQL model instance"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "table",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MssqlCrudController.create"
      },
      "patch": {
        "x-controller-name": "MssqlCrudController",
        "x-operation-name": "updateAll",
        "tags": [
          "MssqlCrudController"
        ],
        "responses": {
          "200": {
            "description": "MSSQL PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "table",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "MssqlRow.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<MssqlRow>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MssqlCrudController.updateAll"
      },
      "get": {
        "x-controller-name": "MssqlCrudController",
        "x-operation-name": "find",
        "tags": [
          "MssqlCrudController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Array of MSSQL model instances"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "table",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MssqlRow.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "MssqlCrudController.find"
      }
    },
    "/minio/presigned": {
      "post": {
        "x-controller-name": "MinioController",
        "x-operation-name": "getPresignedUrl",
        "tags": [
          "MinioController"
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "url": {
                      "type": "string"
                    }
                  }
                }
              }
            },
            "description": "Presigned URL response"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "bucket": {
                    "type": "string"
                  },
                  "path": {
                    "type": "string"
                  }
                },
                "required": [
                  "bucket",
                  "path"
                ]
              }
            }
          }
        },
        "operationId": "MinioController.getPresignedUrl"
      }
    },
    "/minio": {
      "post": {
        "x-controller-name": "MinioController",
        "x-operation-name": "uploadToMinio",
        "tags": [
          "MinioController"
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "url": {
                      "type": "string"
                    }
                  }
                }
              }
            },
            "description": "MinIO upload response"
          }
        },
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary"
                  }
                }
              }
            }
          },
          "description": "Request body for multipart/form-data based file upload",
          "required": true
        },
        "operationId": "MinioController.uploadToMinio"
      }
    },
    "/p/K3Q_purchase_order_open/count": {
      "get": {
        "x-controller-name": "K3QPurchaseOrderOpenController",
        "x-operation-name": "count",
        "tags": [
          "K3QPurchaseOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QPurchaseOrderOpen model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QPurchaseOrderOpen.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QPurchaseOrderOpen>"
                }
              }
            }
          }
        ],
        "operationId": "K3QPurchaseOrderOpenController.count"
      }
    },
    "/p/K3Q_purchase_order_open/{id}": {
      "put": {
        "x-controller-name": "K3QPurchaseOrderOpenController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QPurchaseOrderOpenController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QPurchaseOrderOpen PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QPurchaseOrderOpen"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QPurchaseOrderOpenController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QPurchaseOrderOpenController",
        "x-operation-name": "updateById",
        "tags": [
          "K3QPurchaseOrderOpenController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QPurchaseOrderOpen PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QPurchaseOrderOpenPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QPurchaseOrderOpenController.updateById"
      },
      "get": {
        "x-controller-name": "K3QPurchaseOrderOpenController",
        "x-operation-name": "findById",
        "tags": [
          "K3QPurchaseOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QPurchaseOrderOpen model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QPurchaseOrderOpenWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QPurchaseOrderOpen.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QPurchaseOrderOpenController.findById"
      },
      "delete": {
        "x-controller-name": "K3QPurchaseOrderOpenController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QPurchaseOrderOpenController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QPurchaseOrderOpen DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QPurchaseOrderOpenController.deleteById"
      }
    },
    "/p/K3Q_purchase_order_open": {
      "post": {
        "x-controller-name": "K3QPurchaseOrderOpenController",
        "x-operation-name": "create",
        "tags": [
          "K3QPurchaseOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QPurchaseOrderOpen model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QPurchaseOrderOpen"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QPurchaseOrderOpen"
              }
            }
          }
        },
        "operationId": "K3QPurchaseOrderOpenController.create"
      },
      "patch": {
        "x-controller-name": "K3QPurchaseOrderOpenController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QPurchaseOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QPurchaseOrderOpen PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QPurchaseOrderOpen.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QPurchaseOrderOpen>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QPurchaseOrderOpenPartial"
              }
            }
          }
        },
        "operationId": "K3QPurchaseOrderOpenController.updateAll"
      },
      "get": {
        "x-controller-name": "K3QPurchaseOrderOpenController",
        "x-operation-name": "find",
        "tags": [
          "K3QPurchaseOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QPurchaseOrderOpen model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QPurchaseOrderOpenWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QPurchaseOrderOpen.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QPurchaseOrderOpenController.find"
      }
    },
    "/p/K3Q_sales_order_open/count": {
      "get": {
        "x-controller-name": "K3QSalesOrderOpenController",
        "x-operation-name": "count",
        "tags": [
          "K3QSalesOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QSalesOrderOpen model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QSalesOrderOpen.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QSalesOrderOpen>"
                }
              }
            }
          }
        ],
        "operationId": "K3QSalesOrderOpenController.count"
      }
    },
    "/p/K3Q_sales_order_open/{id}": {
      "put": {
        "x-controller-name": "K3QSalesOrderOpenController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QSalesOrderOpenController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QSalesOrderOpen PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QSalesOrderOpen"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QSalesOrderOpenController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QSalesOrderOpenController",
        "x-operation-name": "updateById",
        "tags": [
          "K3QSalesOrderOpenController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QSalesOrderOpen PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QSalesOrderOpenPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QSalesOrderOpenController.updateById"
      },
      "get": {
        "x-controller-name": "K3QSalesOrderOpenController",
        "x-operation-name": "findById",
        "tags": [
          "K3QSalesOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QSalesOrderOpen model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QSalesOrderOpenWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QSalesOrderOpen.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QSalesOrderOpenController.findById"
      },
      "delete": {
        "x-controller-name": "K3QSalesOrderOpenController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QSalesOrderOpenController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QSalesOrderOpen DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QSalesOrderOpenController.deleteById"
      }
    },
    "/p/K3Q_sales_order_open": {
      "post": {
        "x-controller-name": "K3QSalesOrderOpenController",
        "x-operation-name": "create",
        "tags": [
          "K3QSalesOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QSalesOrderOpen model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QSalesOrderOpen"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QSalesOrderOpen"
              }
            }
          }
        },
        "operationId": "K3QSalesOrderOpenController.create"
      },
      "patch": {
        "x-controller-name": "K3QSalesOrderOpenController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QSalesOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QSalesOrderOpen PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QSalesOrderOpen.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QSalesOrderOpen>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QSalesOrderOpenPartial"
              }
            }
          }
        },
        "operationId": "K3QSalesOrderOpenController.updateAll"
      },
      "get": {
        "x-controller-name": "K3QSalesOrderOpenController",
        "x-operation-name": "find",
        "tags": [
          "K3QSalesOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QSalesOrderOpen model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QSalesOrderOpenWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QSalesOrderOpen.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QSalesOrderOpenController.find"
      }
    },
    "/p/K3Q_stock_bill_1/count": {
      "get": {
        "x-controller-name": "K3QStockBill_1Controller",
        "x-operation-name": "count",
        "tags": [
          "K3QStockBill_1Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_1 model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_1.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_1>"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_1Controller.count"
      }
    },
    "/p/K3Q_stock_bill_1/{id}": {
      "put": {
        "x-controller-name": "K3QStockBill_1Controller",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QStockBill_1Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_1 PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_1"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_1Controller.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_1Controller",
        "x-operation-name": "updateById",
        "tags": [
          "K3QStockBill_1Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_1 PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_1Partial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_1Controller.updateById"
      },
      "get": {
        "x-controller-name": "K3QStockBill_1Controller",
        "x-operation-name": "findById",
        "tags": [
          "K3QStockBill_1Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_1 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_1WithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_1.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_1Controller.findById"
      },
      "delete": {
        "x-controller-name": "K3QStockBill_1Controller",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QStockBill_1Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_1 DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QStockBill_1Controller.deleteById"
      }
    },
    "/p/K3Q_stock_bill_1": {
      "post": {
        "x-controller-name": "K3QStockBill_1Controller",
        "x-operation-name": "create",
        "tags": [
          "K3QStockBill_1Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_1 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_1"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QStockBill_1"
              }
            }
          }
        },
        "operationId": "K3QStockBill_1Controller.create"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_1Controller",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QStockBill_1Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_1 PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_1.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_1>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_1Partial"
              }
            }
          }
        },
        "operationId": "K3QStockBill_1Controller.updateAll"
      },
      "get": {
        "x-controller-name": "K3QStockBill_1Controller",
        "x-operation-name": "find",
        "tags": [
          "K3QStockBill_1Controller"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QStockBill_1 model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QStockBill_1WithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_1.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_1Controller.find"
      }
    },
    "/p/K3Q_stock_bill_10/count": {
      "get": {
        "x-controller-name": "K3QStockBill_10Controller",
        "x-operation-name": "count",
        "tags": [
          "K3QStockBill_10Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_10 model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_10.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_10>"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_10Controller.count"
      }
    },
    "/p/K3Q_stock_bill_10/{id}": {
      "put": {
        "x-controller-name": "K3QStockBill_10Controller",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QStockBill_10Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_10 PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_10"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_10Controller.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_10Controller",
        "x-operation-name": "updateById",
        "tags": [
          "K3QStockBill_10Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_10 PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_10Partial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_10Controller.updateById"
      },
      "get": {
        "x-controller-name": "K3QStockBill_10Controller",
        "x-operation-name": "findById",
        "tags": [
          "K3QStockBill_10Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_10 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_10WithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_10.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_10Controller.findById"
      },
      "delete": {
        "x-controller-name": "K3QStockBill_10Controller",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QStockBill_10Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_10 DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QStockBill_10Controller.deleteById"
      }
    },
    "/p/K3Q_stock_bill_10": {
      "post": {
        "x-controller-name": "K3QStockBill_10Controller",
        "x-operation-name": "create",
        "tags": [
          "K3QStockBill_10Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_10 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_10"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QStockBill_10"
              }
            }
          }
        },
        "operationId": "K3QStockBill_10Controller.create"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_10Controller",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QStockBill_10Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_10 PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_10.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_10>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_10Partial"
              }
            }
          }
        },
        "operationId": "K3QStockBill_10Controller.updateAll"
      },
      "get": {
        "x-controller-name": "K3QStockBill_10Controller",
        "x-operation-name": "find",
        "tags": [
          "K3QStockBill_10Controller"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QStockBill_10 model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QStockBill_10WithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_10.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_10Controller.find"
      }
    },
    "/p/K3Q_stock_bill_2/count": {
      "get": {
        "x-controller-name": "K3QStockBill_2Controller",
        "x-operation-name": "count",
        "tags": [
          "K3QStockBill_2Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_2 model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_2.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_2>"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_2Controller.count"
      }
    },
    "/p/K3Q_stock_bill_2/{id}": {
      "put": {
        "x-controller-name": "K3QStockBill_2Controller",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QStockBill_2Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_2 PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_2"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_2Controller.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_2Controller",
        "x-operation-name": "updateById",
        "tags": [
          "K3QStockBill_2Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_2 PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_2Partial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_2Controller.updateById"
      },
      "get": {
        "x-controller-name": "K3QStockBill_2Controller",
        "x-operation-name": "findById",
        "tags": [
          "K3QStockBill_2Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_2 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_2WithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_2.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_2Controller.findById"
      },
      "delete": {
        "x-controller-name": "K3QStockBill_2Controller",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QStockBill_2Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_2 DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QStockBill_2Controller.deleteById"
      }
    },
    "/p/K3Q_stock_bill_2": {
      "post": {
        "x-controller-name": "K3QStockBill_2Controller",
        "x-operation-name": "create",
        "tags": [
          "K3QStockBill_2Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_2 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_2"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QStockBill_2"
              }
            }
          }
        },
        "operationId": "K3QStockBill_2Controller.create"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_2Controller",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QStockBill_2Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_2 PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_2.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_2>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_2Partial"
              }
            }
          }
        },
        "operationId": "K3QStockBill_2Controller.updateAll"
      },
      "get": {
        "x-controller-name": "K3QStockBill_2Controller",
        "x-operation-name": "find",
        "tags": [
          "K3QStockBill_2Controller"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QStockBill_2 model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QStockBill_2WithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_2.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_2Controller.find"
      }
    },
    "/p/K3Q_stock_bill_21/count": {
      "get": {
        "x-controller-name": "K3QStockBill_21Controller",
        "x-operation-name": "count",
        "tags": [
          "K3QStockBill_21Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_21 model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_21.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_21>"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_21Controller.count"
      }
    },
    "/p/K3Q_stock_bill_21/{id}": {
      "put": {
        "x-controller-name": "K3QStockBill_21Controller",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QStockBill_21Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_21 PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_21"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_21Controller.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_21Controller",
        "x-operation-name": "updateById",
        "tags": [
          "K3QStockBill_21Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_21 PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_21Partial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_21Controller.updateById"
      },
      "get": {
        "x-controller-name": "K3QStockBill_21Controller",
        "x-operation-name": "findById",
        "tags": [
          "K3QStockBill_21Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_21 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_21WithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_21.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_21Controller.findById"
      },
      "delete": {
        "x-controller-name": "K3QStockBill_21Controller",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QStockBill_21Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_21 DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QStockBill_21Controller.deleteById"
      }
    },
    "/p/K3Q_stock_bill_21": {
      "post": {
        "x-controller-name": "K3QStockBill_21Controller",
        "x-operation-name": "create",
        "tags": [
          "K3QStockBill_21Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_21 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_21"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QStockBill_21"
              }
            }
          }
        },
        "operationId": "K3QStockBill_21Controller.create"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_21Controller",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QStockBill_21Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_21 PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_21.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_21>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_21Partial"
              }
            }
          }
        },
        "operationId": "K3QStockBill_21Controller.updateAll"
      },
      "get": {
        "x-controller-name": "K3QStockBill_21Controller",
        "x-operation-name": "find",
        "tags": [
          "K3QStockBill_21Controller"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QStockBill_21 model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QStockBill_21WithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_21.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_21Controller.find"
      }
    },
    "/p/K3Q_stock_bill_24/count": {
      "get": {
        "x-controller-name": "K3QStockBill_24Controller",
        "x-operation-name": "count",
        "tags": [
          "K3QStockBill_24Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_24 model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_24.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_24>"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_24Controller.count"
      }
    },
    "/p/K3Q_stock_bill_24/{id}": {
      "put": {
        "x-controller-name": "K3QStockBill_24Controller",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QStockBill_24Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_24 PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_24"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_24Controller.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_24Controller",
        "x-operation-name": "updateById",
        "tags": [
          "K3QStockBill_24Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_24 PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_24Partial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_24Controller.updateById"
      },
      "get": {
        "x-controller-name": "K3QStockBill_24Controller",
        "x-operation-name": "findById",
        "tags": [
          "K3QStockBill_24Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_24 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_24WithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_24.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_24Controller.findById"
      },
      "delete": {
        "x-controller-name": "K3QStockBill_24Controller",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QStockBill_24Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_24 DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QStockBill_24Controller.deleteById"
      }
    },
    "/p/K3Q_stock_bill_24": {
      "post": {
        "x-controller-name": "K3QStockBill_24Controller",
        "x-operation-name": "create",
        "tags": [
          "K3QStockBill_24Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_24 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_24"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QStockBill_24"
              }
            }
          }
        },
        "operationId": "K3QStockBill_24Controller.create"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_24Controller",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QStockBill_24Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_24 PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_24.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_24>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_24Partial"
              }
            }
          }
        },
        "operationId": "K3QStockBill_24Controller.updateAll"
      },
      "get": {
        "x-controller-name": "K3QStockBill_24Controller",
        "x-operation-name": "find",
        "tags": [
          "K3QStockBill_24Controller"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QStockBill_24 model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QStockBill_24WithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_24.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_24Controller.find"
      }
    },
    "/p/K3Q_stock_bill_28/count": {
      "get": {
        "x-controller-name": "K3QStockBill_28Controller",
        "x-operation-name": "count",
        "tags": [
          "K3QStockBill_28Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_28 model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_28.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_28>"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_28Controller.count"
      }
    },
    "/p/K3Q_stock_bill_28/{id}": {
      "put": {
        "x-controller-name": "K3QStockBill_28Controller",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QStockBill_28Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_28 PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_28"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_28Controller.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_28Controller",
        "x-operation-name": "updateById",
        "tags": [
          "K3QStockBill_28Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_28 PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_28Partial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_28Controller.updateById"
      },
      "get": {
        "x-controller-name": "K3QStockBill_28Controller",
        "x-operation-name": "findById",
        "tags": [
          "K3QStockBill_28Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_28 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_28WithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_28.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_28Controller.findById"
      },
      "delete": {
        "x-controller-name": "K3QStockBill_28Controller",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QStockBill_28Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_28 DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QStockBill_28Controller.deleteById"
      }
    },
    "/p/K3Q_stock_bill_28": {
      "post": {
        "x-controller-name": "K3QStockBill_28Controller",
        "x-operation-name": "create",
        "tags": [
          "K3QStockBill_28Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_28 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_28"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QStockBill_28"
              }
            }
          }
        },
        "operationId": "K3QStockBill_28Controller.create"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_28Controller",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QStockBill_28Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_28 PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_28.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_28>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_28Partial"
              }
            }
          }
        },
        "operationId": "K3QStockBill_28Controller.updateAll"
      },
      "get": {
        "x-controller-name": "K3QStockBill_28Controller",
        "x-operation-name": "find",
        "tags": [
          "K3QStockBill_28Controller"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QStockBill_28 model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QStockBill_28WithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_28.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_28Controller.find"
      }
    },
    "/p/K3Q_stock_bill_29/count": {
      "get": {
        "x-controller-name": "K3QStockBill_29Controller",
        "x-operation-name": "count",
        "tags": [
          "K3QStockBill_29Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_29 model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_29.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_29>"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_29Controller.count"
      }
    },
    "/p/K3Q_stock_bill_29/{id}": {
      "put": {
        "x-controller-name": "K3QStockBill_29Controller",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QStockBill_29Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_29 PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_29"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_29Controller.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_29Controller",
        "x-operation-name": "updateById",
        "tags": [
          "K3QStockBill_29Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_29 PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_29Partial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_29Controller.updateById"
      },
      "get": {
        "x-controller-name": "K3QStockBill_29Controller",
        "x-operation-name": "findById",
        "tags": [
          "K3QStockBill_29Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_29 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_29WithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_29.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_29Controller.findById"
      },
      "delete": {
        "x-controller-name": "K3QStockBill_29Controller",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QStockBill_29Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_29 DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QStockBill_29Controller.deleteById"
      }
    },
    "/p/K3Q_stock_bill_29": {
      "post": {
        "x-controller-name": "K3QStockBill_29Controller",
        "x-operation-name": "create",
        "tags": [
          "K3QStockBill_29Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_29 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_29"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QStockBill_29"
              }
            }
          }
        },
        "operationId": "K3QStockBill_29Controller.create"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_29Controller",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QStockBill_29Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_29 PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_29.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_29>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_29Partial"
              }
            }
          }
        },
        "operationId": "K3QStockBill_29Controller.updateAll"
      },
      "get": {
        "x-controller-name": "K3QStockBill_29Controller",
        "x-operation-name": "find",
        "tags": [
          "K3QStockBill_29Controller"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QStockBill_29 model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QStockBill_29WithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_29.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_29Controller.find"
      }
    },
    "/p/K3Q_stock_bill_5/count": {
      "get": {
        "x-controller-name": "K3QStockBill_5Controller",
        "x-operation-name": "count",
        "tags": [
          "K3QStockBill_5Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_5 model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_5.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_5>"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_5Controller.count"
      }
    },
    "/p/K3Q_stock_bill_5/{id}": {
      "put": {
        "x-controller-name": "K3QStockBill_5Controller",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QStockBill_5Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_5 PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_5"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_5Controller.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_5Controller",
        "x-operation-name": "updateById",
        "tags": [
          "K3QStockBill_5Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_5 PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_5Partial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QStockBill_5Controller.updateById"
      },
      "get": {
        "x-controller-name": "K3QStockBill_5Controller",
        "x-operation-name": "findById",
        "tags": [
          "K3QStockBill_5Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_5 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_5WithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_5.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_5Controller.findById"
      },
      "delete": {
        "x-controller-name": "K3QStockBill_5Controller",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QStockBill_5Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QStockBill_5 DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QStockBill_5Controller.deleteById"
      }
    },
    "/p/K3Q_stock_bill_5": {
      "post": {
        "x-controller-name": "K3QStockBill_5Controller",
        "x-operation-name": "create",
        "tags": [
          "K3QStockBill_5Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_5 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_5"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QStockBill_5"
              }
            }
          }
        },
        "operationId": "K3QStockBill_5Controller.create"
      },
      "patch": {
        "x-controller-name": "K3QStockBill_5Controller",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QStockBill_5Controller"
        ],
        "responses": {
          "200": {
            "description": "K3QStockBill_5 PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QStockBill_5.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QStockBill_5>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QStockBill_5Partial"
              }
            }
          }
        },
        "operationId": "K3QStockBill_5Controller.updateAll"
      },
      "get": {
        "x-controller-name": "K3QStockBill_5Controller",
        "x-operation-name": "find",
        "tags": [
          "K3QStockBill_5Controller"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QStockBill_5 model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QStockBill_5WithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QStockBill_5.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QStockBill_5Controller.find"
      }
    },
    "/p/K3Q_subcontract_order_open/count": {
      "get": {
        "x-controller-name": "K3QSubcontractOrderOpenController",
        "x-operation-name": "count",
        "tags": [
          "K3QSubcontractOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QSubcontractOrderOpen model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QSubcontractOrderOpen.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QSubcontractOrderOpen>"
                }
              }
            }
          }
        ],
        "operationId": "K3QSubcontractOrderOpenController.count"
      }
    },
    "/p/K3Q_subcontract_order_open/{id}": {
      "put": {
        "x-controller-name": "K3QSubcontractOrderOpenController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3QSubcontractOrderOpenController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QSubcontractOrderOpen PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QSubcontractOrderOpen"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QSubcontractOrderOpenController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3QSubcontractOrderOpenController",
        "x-operation-name": "updateById",
        "tags": [
          "K3QSubcontractOrderOpenController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QSubcontractOrderOpen PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QSubcontractOrderOpenPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3QSubcontractOrderOpenController.updateById"
      },
      "get": {
        "x-controller-name": "K3QSubcontractOrderOpenController",
        "x-operation-name": "findById",
        "tags": [
          "K3QSubcontractOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QSubcontractOrderOpen model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QSubcontractOrderOpenWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QSubcontractOrderOpen.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3QSubcontractOrderOpenController.findById"
      },
      "delete": {
        "x-controller-name": "K3QSubcontractOrderOpenController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3QSubcontractOrderOpenController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3QSubcontractOrderOpen DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3QSubcontractOrderOpenController.deleteById"
      }
    },
    "/p/K3Q_subcontract_order_open": {
      "post": {
        "x-controller-name": "K3QSubcontractOrderOpenController",
        "x-operation-name": "create",
        "tags": [
          "K3QSubcontractOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QSubcontractOrderOpen model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QSubcontractOrderOpen"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3QSubcontractOrderOpen"
              }
            }
          }
        },
        "operationId": "K3QSubcontractOrderOpenController.create"
      },
      "patch": {
        "x-controller-name": "K3QSubcontractOrderOpenController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3QSubcontractOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "K3QSubcontractOrderOpen PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3QSubcontractOrderOpen.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3QSubcontractOrderOpen>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3QSubcontractOrderOpenPartial"
              }
            }
          }
        },
        "operationId": "K3QSubcontractOrderOpenController.updateAll"
      },
      "get": {
        "x-controller-name": "K3QSubcontractOrderOpenController",
        "x-operation-name": "find",
        "tags": [
          "K3QSubcontractOrderOpenController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3QSubcontractOrderOpen model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3QSubcontractOrderOpenWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3QSubcontractOrderOpen.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3QSubcontractOrderOpenController.find"
      }
    },
    "/p/K3_ICBOM/count": {
      "get": {
        "x-controller-name": "K3IcbomController",
        "x-operation-name": "count",
        "tags": [
          "K3IcbomController"
        ],
        "responses": {
          "200": {
            "description": "K3Icbom model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3Icbom.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3Icbom>"
                }
              }
            }
          }
        ],
        "operationId": "K3IcbomController.count"
      }
    },
    "/p/K3_ICBOM/{id}": {
      "put": {
        "x-controller-name": "K3IcbomController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3IcbomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3Icbom PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3Icbom"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcbomController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3IcbomController",
        "x-operation-name": "updateById",
        "tags": [
          "K3IcbomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3Icbom PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcbomPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcbomController.updateById"
      },
      "get": {
        "x-controller-name": "K3IcbomController",
        "x-operation-name": "findById",
        "tags": [
          "K3IcbomController"
        ],
        "responses": {
          "200": {
            "description": "K3Icbom model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcbomWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3Icbom.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3IcbomController.findById"
      },
      "delete": {
        "x-controller-name": "K3IcbomController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3IcbomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3Icbom DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3IcbomController.deleteById"
      }
    },
    "/p/K3_ICBOM": {
      "post": {
        "x-controller-name": "K3IcbomController",
        "x-operation-name": "create",
        "tags": [
          "K3IcbomController"
        ],
        "responses": {
          "200": {
            "description": "K3Icbom model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3Icbom"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3Icbom"
              }
            }
          }
        },
        "operationId": "K3IcbomController.create"
      },
      "patch": {
        "x-controller-name": "K3IcbomController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3IcbomController"
        ],
        "responses": {
          "200": {
            "description": "K3Icbom PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3Icbom.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3Icbom>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcbomPartial"
              }
            }
          }
        },
        "operationId": "K3IcbomController.updateAll"
      },
      "get": {
        "x-controller-name": "K3IcbomController",
        "x-operation-name": "find",
        "tags": [
          "K3IcbomController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3Icbom model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3IcbomWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3Icbom.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3IcbomController.find"
      }
    },
    "/p/K3_ICBOMChild/count": {
      "get": {
        "x-controller-name": "K3IcbomChildController",
        "x-operation-name": "count",
        "tags": [
          "K3IcbomChildController"
        ],
        "responses": {
          "200": {
            "description": "K3IcbomChild model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcbomChild.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcbomChild>"
                }
              }
            }
          }
        ],
        "operationId": "K3IcbomChildController.count"
      }
    },
    "/p/K3_ICBOMChild/{id}": {
      "put": {
        "x-controller-name": "K3IcbomChildController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3IcbomChildController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcbomChild PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcbomChild"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcbomChildController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3IcbomChildController",
        "x-operation-name": "updateById",
        "tags": [
          "K3IcbomChildController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcbomChild PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcbomChildPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcbomChildController.updateById"
      },
      "get": {
        "x-controller-name": "K3IcbomChildController",
        "x-operation-name": "findById",
        "tags": [
          "K3IcbomChildController"
        ],
        "responses": {
          "200": {
            "description": "K3IcbomChild model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcbomChildWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcbomChild.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3IcbomChildController.findById"
      },
      "delete": {
        "x-controller-name": "K3IcbomChildController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3IcbomChildController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcbomChild DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3IcbomChildController.deleteById"
      }
    },
    "/p/K3_ICBOMChild": {
      "post": {
        "x-controller-name": "K3IcbomChildController",
        "x-operation-name": "create",
        "tags": [
          "K3IcbomChildController"
        ],
        "responses": {
          "200": {
            "description": "K3IcbomChild model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcbomChild"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3IcbomChild"
              }
            }
          }
        },
        "operationId": "K3IcbomChildController.create"
      },
      "patch": {
        "x-controller-name": "K3IcbomChildController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3IcbomChildController"
        ],
        "responses": {
          "200": {
            "description": "K3IcbomChild PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcbomChild.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcbomChild>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcbomChildPartial"
              }
            }
          }
        },
        "operationId": "K3IcbomChildController.updateAll"
      },
      "get": {
        "x-controller-name": "K3IcbomChildController",
        "x-operation-name": "find",
        "tags": [
          "K3IcbomChildController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3IcbomChild model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3IcbomChildWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcbomChild.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3IcbomChildController.find"
      }
    },
    "/p/K3_ICInventory/count": {
      "get": {
        "x-controller-name": "K3IcInventoryController",
        "x-operation-name": "count",
        "tags": [
          "K3IcInventoryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcInventory model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcInventory.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcInventory>"
                }
              }
            }
          }
        ],
        "operationId": "K3IcInventoryController.count"
      }
    },
    "/p/K3_ICInventory/{id}": {
      "put": {
        "x-controller-name": "K3IcInventoryController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3IcInventoryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcInventory PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcInventory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcInventoryController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3IcInventoryController",
        "x-operation-name": "updateById",
        "tags": [
          "K3IcInventoryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcInventory PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcInventoryPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcInventoryController.updateById"
      },
      "get": {
        "x-controller-name": "K3IcInventoryController",
        "x-operation-name": "findById",
        "tags": [
          "K3IcInventoryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcInventory model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcInventoryWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcInventory.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3IcInventoryController.findById"
      },
      "delete": {
        "x-controller-name": "K3IcInventoryController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3IcInventoryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcInventory DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3IcInventoryController.deleteById"
      }
    },
    "/p/K3_ICInventory": {
      "post": {
        "x-controller-name": "K3IcInventoryController",
        "x-operation-name": "create",
        "tags": [
          "K3IcInventoryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcInventory model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcInventory"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3IcInventory"
              }
            }
          }
        },
        "operationId": "K3IcInventoryController.create"
      },
      "patch": {
        "x-controller-name": "K3IcInventoryController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3IcInventoryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcInventory PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcInventory.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcInventory>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcInventoryPartial"
              }
            }
          }
        },
        "operationId": "K3IcInventoryController.updateAll"
      },
      "get": {
        "x-controller-name": "K3IcInventoryController",
        "x-operation-name": "find",
        "tags": [
          "K3IcInventoryController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3IcInventory model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3IcInventoryWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcInventory.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3IcInventoryController.find"
      }
    },
    "/p/K3_ICPrcPlyEntry/count": {
      "get": {
        "x-controller-name": "K3IcPrcPlyEntryController",
        "x-operation-name": "count",
        "tags": [
          "K3IcPrcPlyEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcPrcPlyEntry model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcPrcPlyEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcPrcPlyEntry>"
                }
              }
            }
          }
        ],
        "operationId": "K3IcPrcPlyEntryController.count"
      }
    },
    "/p/K3_ICPrcPlyEntry/{id}": {
      "put": {
        "x-controller-name": "K3IcPrcPlyEntryController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3IcPrcPlyEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcPrcPlyEntry PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcPrcPlyEntry"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcPrcPlyEntryController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3IcPrcPlyEntryController",
        "x-operation-name": "updateById",
        "tags": [
          "K3IcPrcPlyEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcPrcPlyEntry PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcPrcPlyEntryPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcPrcPlyEntryController.updateById"
      },
      "get": {
        "x-controller-name": "K3IcPrcPlyEntryController",
        "x-operation-name": "findById",
        "tags": [
          "K3IcPrcPlyEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcPrcPlyEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcPrcPlyEntryWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcPrcPlyEntry.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3IcPrcPlyEntryController.findById"
      },
      "delete": {
        "x-controller-name": "K3IcPrcPlyEntryController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3IcPrcPlyEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcPrcPlyEntry DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3IcPrcPlyEntryController.deleteById"
      }
    },
    "/p/K3_ICPrcPlyEntry": {
      "post": {
        "x-controller-name": "K3IcPrcPlyEntryController",
        "x-operation-name": "create",
        "tags": [
          "K3IcPrcPlyEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcPrcPlyEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcPrcPlyEntry"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3IcPrcPlyEntry"
              }
            }
          }
        },
        "operationId": "K3IcPrcPlyEntryController.create"
      },
      "patch": {
        "x-controller-name": "K3IcPrcPlyEntryController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3IcPrcPlyEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcPrcPlyEntry PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcPrcPlyEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcPrcPlyEntry>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcPrcPlyEntryPartial"
              }
            }
          }
        },
        "operationId": "K3IcPrcPlyEntryController.updateAll"
      },
      "get": {
        "x-controller-name": "K3IcPrcPlyEntryController",
        "x-operation-name": "find",
        "tags": [
          "K3IcPrcPlyEntryController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3IcPrcPlyEntry model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3IcPrcPlyEntryWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcPrcPlyEntry.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3IcPrcPlyEntryController.find"
      }
    },
    "/p/K3_ICPrcPlyEntrySpec/count": {
      "get": {
        "x-controller-name": "K3IcPrcPlyEntrySpecController",
        "x-operation-name": "count",
        "tags": [
          "K3IcPrcPlyEntrySpecController"
        ],
        "responses": {
          "200": {
            "description": "K3IcPrcPlyEntrySpec model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcPrcPlyEntrySpec.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcPrcPlyEntrySpec>"
                }
              }
            }
          }
        ],
        "operationId": "K3IcPrcPlyEntrySpecController.count"
      }
    },
    "/p/K3_ICPrcPlyEntrySpec/{id}": {
      "put": {
        "x-controller-name": "K3IcPrcPlyEntrySpecController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3IcPrcPlyEntrySpecController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcPrcPlyEntrySpec PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcPrcPlyEntrySpec"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcPrcPlyEntrySpecController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3IcPrcPlyEntrySpecController",
        "x-operation-name": "updateById",
        "tags": [
          "K3IcPrcPlyEntrySpecController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcPrcPlyEntrySpec PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcPrcPlyEntrySpecPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcPrcPlyEntrySpecController.updateById"
      },
      "get": {
        "x-controller-name": "K3IcPrcPlyEntrySpecController",
        "x-operation-name": "findById",
        "tags": [
          "K3IcPrcPlyEntrySpecController"
        ],
        "responses": {
          "200": {
            "description": "K3IcPrcPlyEntrySpec model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcPrcPlyEntrySpecWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcPrcPlyEntrySpec.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3IcPrcPlyEntrySpecController.findById"
      },
      "delete": {
        "x-controller-name": "K3IcPrcPlyEntrySpecController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3IcPrcPlyEntrySpecController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcPrcPlyEntrySpec DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3IcPrcPlyEntrySpecController.deleteById"
      }
    },
    "/p/K3_ICPrcPlyEntrySpec": {
      "post": {
        "x-controller-name": "K3IcPrcPlyEntrySpecController",
        "x-operation-name": "create",
        "tags": [
          "K3IcPrcPlyEntrySpecController"
        ],
        "responses": {
          "200": {
            "description": "K3IcPrcPlyEntrySpec model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcPrcPlyEntrySpec"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3IcPrcPlyEntrySpec"
              }
            }
          }
        },
        "operationId": "K3IcPrcPlyEntrySpecController.create"
      },
      "patch": {
        "x-controller-name": "K3IcPrcPlyEntrySpecController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3IcPrcPlyEntrySpecController"
        ],
        "responses": {
          "200": {
            "description": "K3IcPrcPlyEntrySpec PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcPrcPlyEntrySpec.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcPrcPlyEntrySpec>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcPrcPlyEntrySpecPartial"
              }
            }
          }
        },
        "operationId": "K3IcPrcPlyEntrySpecController.updateAll"
      },
      "get": {
        "x-controller-name": "K3IcPrcPlyEntrySpecController",
        "x-operation-name": "find",
        "tags": [
          "K3IcPrcPlyEntrySpecController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3IcPrcPlyEntrySpec model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3IcPrcPlyEntrySpecWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcPrcPlyEntrySpec.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3IcPrcPlyEntrySpecController.find"
      }
    },
    "/p/K3_ICStockBill/count": {
      "get": {
        "x-controller-name": "K3IcStockBillController",
        "x-operation-name": "count",
        "tags": [
          "K3IcStockBillController"
        ],
        "responses": {
          "200": {
            "description": "K3IcStockBill model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcStockBill.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcStockBill>"
                }
              }
            }
          }
        ],
        "operationId": "K3IcStockBillController.count"
      }
    },
    "/p/K3_ICStockBill/{id}": {
      "put": {
        "x-controller-name": "K3IcStockBillController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3IcStockBillController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcStockBill PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcStockBill"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcStockBillController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3IcStockBillController",
        "x-operation-name": "updateById",
        "tags": [
          "K3IcStockBillController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcStockBill PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcStockBillPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcStockBillController.updateById"
      },
      "get": {
        "x-controller-name": "K3IcStockBillController",
        "x-operation-name": "findById",
        "tags": [
          "K3IcStockBillController"
        ],
        "responses": {
          "200": {
            "description": "K3IcStockBill model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcStockBillWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcStockBill.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3IcStockBillController.findById"
      },
      "delete": {
        "x-controller-name": "K3IcStockBillController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3IcStockBillController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcStockBill DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3IcStockBillController.deleteById"
      }
    },
    "/p/K3_ICStockBill": {
      "post": {
        "x-controller-name": "K3IcStockBillController",
        "x-operation-name": "create",
        "tags": [
          "K3IcStockBillController"
        ],
        "responses": {
          "200": {
            "description": "K3IcStockBill model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcStockBill"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3IcStockBill"
              }
            }
          }
        },
        "operationId": "K3IcStockBillController.create"
      },
      "patch": {
        "x-controller-name": "K3IcStockBillController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3IcStockBillController"
        ],
        "responses": {
          "200": {
            "description": "K3IcStockBill PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcStockBill.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcStockBill>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcStockBillPartial"
              }
            }
          }
        },
        "operationId": "K3IcStockBillController.updateAll"
      },
      "get": {
        "x-controller-name": "K3IcStockBillController",
        "x-operation-name": "find",
        "tags": [
          "K3IcStockBillController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3IcStockBill model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3IcStockBillWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcStockBill.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3IcStockBillController.find"
      }
    },
    "/p/K3_ICStockBillEntry/count": {
      "get": {
        "x-controller-name": "K3IcStockBillEntryController",
        "x-operation-name": "count",
        "tags": [
          "K3IcStockBillEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcStockBillEntry model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcStockBillEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcStockBillEntry>"
                }
              }
            }
          }
        ],
        "operationId": "K3IcStockBillEntryController.count"
      }
    },
    "/p/K3_ICStockBillEntry/{id}": {
      "put": {
        "x-controller-name": "K3IcStockBillEntryController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3IcStockBillEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcStockBillEntry PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcStockBillEntry"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcStockBillEntryController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3IcStockBillEntryController",
        "x-operation-name": "updateById",
        "tags": [
          "K3IcStockBillEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcStockBillEntry PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcStockBillEntryPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcStockBillEntryController.updateById"
      },
      "get": {
        "x-controller-name": "K3IcStockBillEntryController",
        "x-operation-name": "findById",
        "tags": [
          "K3IcStockBillEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcStockBillEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcStockBillEntryWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcStockBillEntry.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3IcStockBillEntryController.findById"
      },
      "delete": {
        "x-controller-name": "K3IcStockBillEntryController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3IcStockBillEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcStockBillEntry DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3IcStockBillEntryController.deleteById"
      }
    },
    "/p/K3_ICStockBillEntry": {
      "post": {
        "x-controller-name": "K3IcStockBillEntryController",
        "x-operation-name": "create",
        "tags": [
          "K3IcStockBillEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcStockBillEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcStockBillEntry"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3IcStockBillEntry"
              }
            }
          }
        },
        "operationId": "K3IcStockBillEntryController.create"
      },
      "patch": {
        "x-controller-name": "K3IcStockBillEntryController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3IcStockBillEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcStockBillEntry PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcStockBillEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcStockBillEntry>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcStockBillEntryPartial"
              }
            }
          }
        },
        "operationId": "K3IcStockBillEntryController.updateAll"
      },
      "get": {
        "x-controller-name": "K3IcStockBillEntryController",
        "x-operation-name": "find",
        "tags": [
          "K3IcStockBillEntryController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3IcStockBillEntry model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3IcStockBillEntryWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcStockBillEntry.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3IcStockBillEntryController.find"
      }
    },
    "/p/K3_ICSubContract/count": {
      "get": {
        "x-controller-name": "K3IcSubContractController",
        "x-operation-name": "count",
        "tags": [
          "K3IcSubContractController"
        ],
        "responses": {
          "200": {
            "description": "K3IcSubContract model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcSubContract.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcSubContract>"
                }
              }
            }
          }
        ],
        "operationId": "K3IcSubContractController.count"
      }
    },
    "/p/K3_ICSubContract/{id}": {
      "put": {
        "x-controller-name": "K3IcSubContractController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3IcSubContractController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcSubContract PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcSubContract"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcSubContractController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3IcSubContractController",
        "x-operation-name": "updateById",
        "tags": [
          "K3IcSubContractController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcSubContract PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcSubContractPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcSubContractController.updateById"
      },
      "get": {
        "x-controller-name": "K3IcSubContractController",
        "x-operation-name": "findById",
        "tags": [
          "K3IcSubContractController"
        ],
        "responses": {
          "200": {
            "description": "K3IcSubContract model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcSubContractWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcSubContract.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3IcSubContractController.findById"
      },
      "delete": {
        "x-controller-name": "K3IcSubContractController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3IcSubContractController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcSubContract DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3IcSubContractController.deleteById"
      }
    },
    "/p/K3_ICSubContract": {
      "post": {
        "x-controller-name": "K3IcSubContractController",
        "x-operation-name": "create",
        "tags": [
          "K3IcSubContractController"
        ],
        "responses": {
          "200": {
            "description": "K3IcSubContract model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcSubContract"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3IcSubContract"
              }
            }
          }
        },
        "operationId": "K3IcSubContractController.create"
      },
      "patch": {
        "x-controller-name": "K3IcSubContractController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3IcSubContractController"
        ],
        "responses": {
          "200": {
            "description": "K3IcSubContract PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcSubContract.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcSubContract>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcSubContractPartial"
              }
            }
          }
        },
        "operationId": "K3IcSubContractController.updateAll"
      },
      "get": {
        "x-controller-name": "K3IcSubContractController",
        "x-operation-name": "find",
        "tags": [
          "K3IcSubContractController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3IcSubContract model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3IcSubContractWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcSubContract.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3IcSubContractController.find"
      }
    },
    "/p/K3_ICSubContractEntry/count": {
      "get": {
        "x-controller-name": "K3IcSubContractEntryController",
        "x-operation-name": "count",
        "tags": [
          "K3IcSubContractEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcSubContractEntry model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcSubContractEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcSubContractEntry>"
                }
              }
            }
          }
        ],
        "operationId": "K3IcSubContractEntryController.count"
      }
    },
    "/p/K3_ICSubContractEntry/{id}": {
      "put": {
        "x-controller-name": "K3IcSubContractEntryController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3IcSubContractEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcSubContractEntry PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcSubContractEntry"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcSubContractEntryController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3IcSubContractEntryController",
        "x-operation-name": "updateById",
        "tags": [
          "K3IcSubContractEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcSubContractEntry PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcSubContractEntryPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3IcSubContractEntryController.updateById"
      },
      "get": {
        "x-controller-name": "K3IcSubContractEntryController",
        "x-operation-name": "findById",
        "tags": [
          "K3IcSubContractEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcSubContractEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcSubContractEntryWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcSubContractEntry.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3IcSubContractEntryController.findById"
      },
      "delete": {
        "x-controller-name": "K3IcSubContractEntryController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3IcSubContractEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3IcSubContractEntry DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3IcSubContractEntryController.deleteById"
      }
    },
    "/p/K3_ICSubContractEntry": {
      "post": {
        "x-controller-name": "K3IcSubContractEntryController",
        "x-operation-name": "create",
        "tags": [
          "K3IcSubContractEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcSubContractEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcSubContractEntry"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3IcSubContractEntry"
              }
            }
          }
        },
        "operationId": "K3IcSubContractEntryController.create"
      },
      "patch": {
        "x-controller-name": "K3IcSubContractEntryController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3IcSubContractEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3IcSubContractEntry PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3IcSubContractEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3IcSubContractEntry>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3IcSubContractEntryPartial"
              }
            }
          }
        },
        "operationId": "K3IcSubContractEntryController.updateAll"
      },
      "get": {
        "x-controller-name": "K3IcSubContractEntryController",
        "x-operation-name": "find",
        "tags": [
          "K3IcSubContractEntryController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3IcSubContractEntry model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3IcSubContractEntryWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3IcSubContractEntry.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3IcSubContractEntryController.find"
      }
    },
    "/p/K3_POOrder/count": {
      "get": {
        "x-controller-name": "K3PoOrderController",
        "x-operation-name": "count",
        "tags": [
          "K3PoOrderController"
        ],
        "responses": {
          "200": {
            "description": "K3PoOrder model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3PoOrder.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3PoOrder>"
                }
              }
            }
          }
        ],
        "operationId": "K3PoOrderController.count"
      }
    },
    "/p/K3_POOrder/{id}": {
      "put": {
        "x-controller-name": "K3PoOrderController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3PoOrderController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3PoOrder PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3PoOrder"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3PoOrderController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3PoOrderController",
        "x-operation-name": "updateById",
        "tags": [
          "K3PoOrderController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3PoOrder PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3PoOrderPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3PoOrderController.updateById"
      },
      "get": {
        "x-controller-name": "K3PoOrderController",
        "x-operation-name": "findById",
        "tags": [
          "K3PoOrderController"
        ],
        "responses": {
          "200": {
            "description": "K3PoOrder model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3PoOrderWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3PoOrder.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3PoOrderController.findById"
      },
      "delete": {
        "x-controller-name": "K3PoOrderController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3PoOrderController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3PoOrder DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3PoOrderController.deleteById"
      }
    },
    "/p/K3_POOrder": {
      "post": {
        "x-controller-name": "K3PoOrderController",
        "x-operation-name": "create",
        "tags": [
          "K3PoOrderController"
        ],
        "responses": {
          "200": {
            "description": "K3PoOrder model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3PoOrder"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3PoOrder"
              }
            }
          }
        },
        "operationId": "K3PoOrderController.create"
      },
      "patch": {
        "x-controller-name": "K3PoOrderController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3PoOrderController"
        ],
        "responses": {
          "200": {
            "description": "K3PoOrder PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3PoOrder.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3PoOrder>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3PoOrderPartial"
              }
            }
          }
        },
        "operationId": "K3PoOrderController.updateAll"
      },
      "get": {
        "x-controller-name": "K3PoOrderController",
        "x-operation-name": "find",
        "tags": [
          "K3PoOrderController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3PoOrder model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3PoOrderWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3PoOrder.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3PoOrderController.find"
      }
    },
    "/p/K3_POOrderEntry/count": {
      "get": {
        "x-controller-name": "K3PoOrderEntryController",
        "x-operation-name": "count",
        "tags": [
          "K3PoOrderEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3PoOrderEntry model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3PoOrderEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3PoOrderEntry>"
                }
              }
            }
          }
        ],
        "operationId": "K3PoOrderEntryController.count"
      }
    },
    "/p/K3_POOrderEntry/{id}": {
      "put": {
        "x-controller-name": "K3PoOrderEntryController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3PoOrderEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3PoOrderEntry PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3PoOrderEntry"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3PoOrderEntryController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3PoOrderEntryController",
        "x-operation-name": "updateById",
        "tags": [
          "K3PoOrderEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3PoOrderEntry PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3PoOrderEntryPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3PoOrderEntryController.updateById"
      },
      "get": {
        "x-controller-name": "K3PoOrderEntryController",
        "x-operation-name": "findById",
        "tags": [
          "K3PoOrderEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3PoOrderEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3PoOrderEntryWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3PoOrderEntry.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3PoOrderEntryController.findById"
      },
      "delete": {
        "x-controller-name": "K3PoOrderEntryController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3PoOrderEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3PoOrderEntry DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3PoOrderEntryController.deleteById"
      }
    },
    "/p/K3_POOrderEntry": {
      "post": {
        "x-controller-name": "K3PoOrderEntryController",
        "x-operation-name": "create",
        "tags": [
          "K3PoOrderEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3PoOrderEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3PoOrderEntry"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3PoOrderEntry"
              }
            }
          }
        },
        "operationId": "K3PoOrderEntryController.create"
      },
      "patch": {
        "x-controller-name": "K3PoOrderEntryController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3PoOrderEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3PoOrderEntry PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3PoOrderEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3PoOrderEntry>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3PoOrderEntryPartial"
              }
            }
          }
        },
        "operationId": "K3PoOrderEntryController.updateAll"
      },
      "get": {
        "x-controller-name": "K3PoOrderEntryController",
        "x-operation-name": "find",
        "tags": [
          "K3PoOrderEntryController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3PoOrderEntry model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3PoOrderEntryWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3PoOrderEntry.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3PoOrderEntryController.find"
      }
    },
    "/p/K3_SEOrder/count": {
      "get": {
        "x-controller-name": "K3SeOrderController",
        "x-operation-name": "count",
        "tags": [
          "K3SeOrderController"
        ],
        "responses": {
          "200": {
            "description": "K3SeOrder model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3SeOrder.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3SeOrder>"
                }
              }
            }
          }
        ],
        "operationId": "K3SeOrderController.count"
      }
    },
    "/p/K3_SEOrder/{id}": {
      "put": {
        "x-controller-name": "K3SeOrderController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3SeOrderController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3SeOrder PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3SeOrder"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3SeOrderController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3SeOrderController",
        "x-operation-name": "updateById",
        "tags": [
          "K3SeOrderController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3SeOrder PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3SeOrderPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3SeOrderController.updateById"
      },
      "get": {
        "x-controller-name": "K3SeOrderController",
        "x-operation-name": "findById",
        "tags": [
          "K3SeOrderController"
        ],
        "responses": {
          "200": {
            "description": "K3SeOrder model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3SeOrderWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3SeOrder.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3SeOrderController.findById"
      },
      "delete": {
        "x-controller-name": "K3SeOrderController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3SeOrderController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3SeOrder DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3SeOrderController.deleteById"
      }
    },
    "/p/K3_SEOrder": {
      "post": {
        "x-controller-name": "K3SeOrderController",
        "x-operation-name": "create",
        "tags": [
          "K3SeOrderController"
        ],
        "responses": {
          "200": {
            "description": "K3SeOrder model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3SeOrder"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3SeOrder"
              }
            }
          }
        },
        "operationId": "K3SeOrderController.create"
      },
      "patch": {
        "x-controller-name": "K3SeOrderController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3SeOrderController"
        ],
        "responses": {
          "200": {
            "description": "K3SeOrder PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3SeOrder.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3SeOrder>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3SeOrderPartial"
              }
            }
          }
        },
        "operationId": "K3SeOrderController.updateAll"
      },
      "get": {
        "x-controller-name": "K3SeOrderController",
        "x-operation-name": "find",
        "tags": [
          "K3SeOrderController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3SeOrder model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3SeOrderWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3SeOrder.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3SeOrderController.find"
      }
    },
    "/p/K3_SEOrderEntry/count": {
      "get": {
        "x-controller-name": "K3SeOrderEntryController",
        "x-operation-name": "count",
        "tags": [
          "K3SeOrderEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3SeOrderEntry model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3SeOrderEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3SeOrderEntry>"
                }
              }
            }
          }
        ],
        "operationId": "K3SeOrderEntryController.count"
      }
    },
    "/p/K3_SEOrderEntry/{id}": {
      "put": {
        "x-controller-name": "K3SeOrderEntryController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3SeOrderEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3SeOrderEntry PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3SeOrderEntry"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3SeOrderEntryController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3SeOrderEntryController",
        "x-operation-name": "updateById",
        "tags": [
          "K3SeOrderEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3SeOrderEntry PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3SeOrderEntryPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3SeOrderEntryController.updateById"
      },
      "get": {
        "x-controller-name": "K3SeOrderEntryController",
        "x-operation-name": "findById",
        "tags": [
          "K3SeOrderEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3SeOrderEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3SeOrderEntryWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3SeOrderEntry.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3SeOrderEntryController.findById"
      },
      "delete": {
        "x-controller-name": "K3SeOrderEntryController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3SeOrderEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3SeOrderEntry DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3SeOrderEntryController.deleteById"
      }
    },
    "/p/K3_SEOrderEntry": {
      "post": {
        "x-controller-name": "K3SeOrderEntryController",
        "x-operation-name": "create",
        "tags": [
          "K3SeOrderEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3SeOrderEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3SeOrderEntry"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3SeOrderEntry"
              }
            }
          }
        },
        "operationId": "K3SeOrderEntryController.create"
      },
      "patch": {
        "x-controller-name": "K3SeOrderEntryController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3SeOrderEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3SeOrderEntry PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3SeOrderEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3SeOrderEntry>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3SeOrderEntryPartial"
              }
            }
          }
        },
        "operationId": "K3SeOrderEntryController.updateAll"
      },
      "get": {
        "x-controller-name": "K3SeOrderEntryController",
        "x-operation-name": "find",
        "tags": [
          "K3SeOrderEntryController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3SeOrderEntry model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3SeOrderEntryWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3SeOrderEntry.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3SeOrderEntryController.find"
      }
    },
    "/p/K3_V_ICStockBillList/count": {
      "get": {
        "x-controller-name": "K3VIcStockBillListController",
        "x-operation-name": "count",
        "tags": [
          "K3VIcStockBillListController"
        ],
        "responses": {
          "200": {
            "description": "K3VIcStockBillList model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3VIcStockBillList.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3VIcStockBillList>"
                }
              }
            }
          }
        ],
        "operationId": "K3VIcStockBillListController.count"
      }
    },
    "/p/K3_V_ICStockBillList/{id}": {
      "put": {
        "x-controller-name": "K3VIcStockBillListController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3VIcStockBillListController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3VIcStockBillList PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3VIcStockBillList"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3VIcStockBillListController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3VIcStockBillListController",
        "x-operation-name": "updateById",
        "tags": [
          "K3VIcStockBillListController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3VIcStockBillList PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3VIcStockBillListPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3VIcStockBillListController.updateById"
      },
      "get": {
        "x-controller-name": "K3VIcStockBillListController",
        "x-operation-name": "findById",
        "tags": [
          "K3VIcStockBillListController"
        ],
        "responses": {
          "200": {
            "description": "K3VIcStockBillList model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3VIcStockBillListWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3VIcStockBillList.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3VIcStockBillListController.findById"
      },
      "delete": {
        "x-controller-name": "K3VIcStockBillListController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3VIcStockBillListController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3VIcStockBillList DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3VIcStockBillListController.deleteById"
      }
    },
    "/p/K3_V_ICStockBillList": {
      "post": {
        "x-controller-name": "K3VIcStockBillListController",
        "x-operation-name": "create",
        "tags": [
          "K3VIcStockBillListController"
        ],
        "responses": {
          "200": {
            "description": "K3VIcStockBillList model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3VIcStockBillList"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3VIcStockBillList"
              }
            }
          }
        },
        "operationId": "K3VIcStockBillListController.create"
      },
      "patch": {
        "x-controller-name": "K3VIcStockBillListController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3VIcStockBillListController"
        ],
        "responses": {
          "200": {
            "description": "K3VIcStockBillList PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3VIcStockBillList.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3VIcStockBillList>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3VIcStockBillListPartial"
              }
            }
          }
        },
        "operationId": "K3VIcStockBillListController.updateAll"
      },
      "get": {
        "x-controller-name": "K3VIcStockBillListController",
        "x-operation-name": "find",
        "tags": [
          "K3VIcStockBillListController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3VIcStockBillList model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3VIcStockBillListWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3VIcStockBillList.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3VIcStockBillListController.find"
      }
    },
    "/p/K3_t_Accessory/count": {
      "get": {
        "x-controller-name": "K3TAccessoryController",
        "x-operation-name": "count",
        "tags": [
          "K3TAccessoryController"
        ],
        "responses": {
          "200": {
            "description": "K3TAccessory model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TAccessory.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TAccessory>"
                }
              }
            }
          }
        ],
        "operationId": "K3TAccessoryController.count"
      }
    },
    "/p/K3_t_Accessory/{id}": {
      "put": {
        "x-controller-name": "K3TAccessoryController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TAccessoryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TAccessory PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TAccessory"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TAccessoryController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TAccessoryController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TAccessoryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TAccessory PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TAccessoryPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TAccessoryController.updateById"
      },
      "get": {
        "x-controller-name": "K3TAccessoryController",
        "x-operation-name": "findById",
        "tags": [
          "K3TAccessoryController"
        ],
        "responses": {
          "200": {
            "description": "K3TAccessory model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TAccessoryWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TAccessory.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TAccessoryController.findById"
      },
      "delete": {
        "x-controller-name": "K3TAccessoryController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TAccessoryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TAccessory DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TAccessoryController.deleteById"
      }
    },
    "/p/K3_t_Accessory": {
      "post": {
        "x-controller-name": "K3TAccessoryController",
        "x-operation-name": "create",
        "tags": [
          "K3TAccessoryController"
        ],
        "responses": {
          "200": {
            "description": "K3TAccessory model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TAccessory"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TAccessory"
              }
            }
          }
        },
        "operationId": "K3TAccessoryController.create"
      },
      "patch": {
        "x-controller-name": "K3TAccessoryController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TAccessoryController"
        ],
        "responses": {
          "200": {
            "description": "K3TAccessory PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TAccessory.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TAccessory>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TAccessoryPartial"
              }
            }
          }
        },
        "operationId": "K3TAccessoryController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TAccessoryController",
        "x-operation-name": "find",
        "tags": [
          "K3TAccessoryController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TAccessory model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TAccessoryWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TAccessory.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TAccessoryController.find"
      }
    },
    "/p/K3_t_Account/count": {
      "get": {
        "x-controller-name": "K3TAccountController",
        "x-operation-name": "count",
        "tags": [
          "K3TAccountController"
        ],
        "responses": {
          "200": {
            "description": "K3TAccount model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TAccount.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TAccount>"
                }
              }
            }
          }
        ],
        "operationId": "K3TAccountController.count"
      }
    },
    "/p/K3_t_Account/{id}": {
      "put": {
        "x-controller-name": "K3TAccountController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TAccountController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TAccount PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TAccount"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TAccountController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TAccountController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TAccountController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TAccount PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TAccountPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TAccountController.updateById"
      },
      "get": {
        "x-controller-name": "K3TAccountController",
        "x-operation-name": "findById",
        "tags": [
          "K3TAccountController"
        ],
        "responses": {
          "200": {
            "description": "K3TAccount model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TAccountWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TAccount.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TAccountController.findById"
      },
      "delete": {
        "x-controller-name": "K3TAccountController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TAccountController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TAccount DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TAccountController.deleteById"
      }
    },
    "/p/K3_t_Account": {
      "post": {
        "x-controller-name": "K3TAccountController",
        "x-operation-name": "create",
        "tags": [
          "K3TAccountController"
        ],
        "responses": {
          "200": {
            "description": "K3TAccount model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TAccount"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TAccount"
              }
            }
          }
        },
        "operationId": "K3TAccountController.create"
      },
      "patch": {
        "x-controller-name": "K3TAccountController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TAccountController"
        ],
        "responses": {
          "200": {
            "description": "K3TAccount PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TAccount.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TAccount>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TAccountPartial"
              }
            }
          }
        },
        "operationId": "K3TAccountController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TAccountController",
        "x-operation-name": "find",
        "tags": [
          "K3TAccountController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TAccount model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TAccountWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TAccount.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TAccountController.find"
      }
    },
    "/p/K3_t_Base_Emp/count": {
      "get": {
        "x-controller-name": "K3TBaseEmpController",
        "x-operation-name": "count",
        "tags": [
          "K3TBaseEmpController"
        ],
        "responses": {
          "200": {
            "description": "K3TBaseEmp model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TBaseEmp.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TBaseEmp>"
                }
              }
            }
          }
        ],
        "operationId": "K3TBaseEmpController.count"
      }
    },
    "/p/K3_t_Base_Emp/{id}": {
      "put": {
        "x-controller-name": "K3TBaseEmpController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TBaseEmpController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TBaseEmp PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TBaseEmp"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TBaseEmpController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TBaseEmpController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TBaseEmpController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TBaseEmp PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TBaseEmpPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TBaseEmpController.updateById"
      },
      "get": {
        "x-controller-name": "K3TBaseEmpController",
        "x-operation-name": "findById",
        "tags": [
          "K3TBaseEmpController"
        ],
        "responses": {
          "200": {
            "description": "K3TBaseEmp model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TBaseEmpWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TBaseEmp.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TBaseEmpController.findById"
      },
      "delete": {
        "x-controller-name": "K3TBaseEmpController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TBaseEmpController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TBaseEmp DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TBaseEmpController.deleteById"
      }
    },
    "/p/K3_t_Base_Emp": {
      "post": {
        "x-controller-name": "K3TBaseEmpController",
        "x-operation-name": "create",
        "tags": [
          "K3TBaseEmpController"
        ],
        "responses": {
          "200": {
            "description": "K3TBaseEmp model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TBaseEmp"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TBaseEmp"
              }
            }
          }
        },
        "operationId": "K3TBaseEmpController.create"
      },
      "patch": {
        "x-controller-name": "K3TBaseEmpController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TBaseEmpController"
        ],
        "responses": {
          "200": {
            "description": "K3TBaseEmp PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TBaseEmp.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TBaseEmp>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TBaseEmpPartial"
              }
            }
          }
        },
        "operationId": "K3TBaseEmpController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TBaseEmpController",
        "x-operation-name": "find",
        "tags": [
          "K3TBaseEmpController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TBaseEmp model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TBaseEmpWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TBaseEmp.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TBaseEmpController.find"
      }
    },
    "/p/K3_t_Base_User/count": {
      "get": {
        "x-controller-name": "K3TBaseUserController",
        "x-operation-name": "count",
        "tags": [
          "K3TBaseUserController"
        ],
        "responses": {
          "200": {
            "description": "K3TBaseUser model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TBaseUser.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TBaseUser>"
                }
              }
            }
          }
        ],
        "operationId": "K3TBaseUserController.count"
      }
    },
    "/p/K3_t_Base_User/{id}": {
      "put": {
        "x-controller-name": "K3TBaseUserController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TBaseUserController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TBaseUser PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TBaseUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TBaseUserController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TBaseUserController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TBaseUserController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TBaseUser PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TBaseUserPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TBaseUserController.updateById"
      },
      "get": {
        "x-controller-name": "K3TBaseUserController",
        "x-operation-name": "findById",
        "tags": [
          "K3TBaseUserController"
        ],
        "responses": {
          "200": {
            "description": "K3TBaseUser model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TBaseUserWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TBaseUser.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TBaseUserController.findById"
      },
      "delete": {
        "x-controller-name": "K3TBaseUserController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TBaseUserController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TBaseUser DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TBaseUserController.deleteById"
      }
    },
    "/p/K3_t_Base_User": {
      "post": {
        "x-controller-name": "K3TBaseUserController",
        "x-operation-name": "create",
        "tags": [
          "K3TBaseUserController"
        ],
        "responses": {
          "200": {
            "description": "K3TBaseUser model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TBaseUser"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TBaseUser"
              }
            }
          }
        },
        "operationId": "K3TBaseUserController.create"
      },
      "patch": {
        "x-controller-name": "K3TBaseUserController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TBaseUserController"
        ],
        "responses": {
          "200": {
            "description": "K3TBaseUser PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TBaseUser.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TBaseUser>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TBaseUserPartial"
              }
            }
          }
        },
        "operationId": "K3TBaseUserController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TBaseUserController",
        "x-operation-name": "find",
        "tags": [
          "K3TBaseUserController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TBaseUser model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TBaseUserWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TBaseUser.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TBaseUserController.find"
      }
    },
    "/p/K3_t_Currency/count": {
      "get": {
        "x-controller-name": "K3TCurrencyController",
        "x-operation-name": "count",
        "tags": [
          "K3TCurrencyController"
        ],
        "responses": {
          "200": {
            "description": "K3TCurrency model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TCurrency.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TCurrency>"
                }
              }
            }
          }
        ],
        "operationId": "K3TCurrencyController.count"
      }
    },
    "/p/K3_t_Currency/{id}": {
      "put": {
        "x-controller-name": "K3TCurrencyController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TCurrencyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TCurrency PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TCurrency"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TCurrencyController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TCurrencyController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TCurrencyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TCurrency PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TCurrencyPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TCurrencyController.updateById"
      },
      "get": {
        "x-controller-name": "K3TCurrencyController",
        "x-operation-name": "findById",
        "tags": [
          "K3TCurrencyController"
        ],
        "responses": {
          "200": {
            "description": "K3TCurrency model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TCurrencyWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TCurrency.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TCurrencyController.findById"
      },
      "delete": {
        "x-controller-name": "K3TCurrencyController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TCurrencyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TCurrency DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TCurrencyController.deleteById"
      }
    },
    "/p/K3_t_Currency": {
      "post": {
        "x-controller-name": "K3TCurrencyController",
        "x-operation-name": "create",
        "tags": [
          "K3TCurrencyController"
        ],
        "responses": {
          "200": {
            "description": "K3TCurrency model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TCurrency"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TCurrency"
              }
            }
          }
        },
        "operationId": "K3TCurrencyController.create"
      },
      "patch": {
        "x-controller-name": "K3TCurrencyController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TCurrencyController"
        ],
        "responses": {
          "200": {
            "description": "K3TCurrency PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TCurrency.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TCurrency>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TCurrencyPartial"
              }
            }
          }
        },
        "operationId": "K3TCurrencyController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TCurrencyController",
        "x-operation-name": "find",
        "tags": [
          "K3TCurrencyController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TCurrency model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TCurrencyWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TCurrency.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TCurrencyController.find"
      }
    },
    "/p/K3_t_Department/count": {
      "get": {
        "x-controller-name": "K3TDepartmentController",
        "x-operation-name": "count",
        "tags": [
          "K3TDepartmentController"
        ],
        "responses": {
          "200": {
            "description": "K3TDepartment model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TDepartment.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TDepartment>"
                }
              }
            }
          }
        ],
        "operationId": "K3TDepartmentController.count"
      }
    },
    "/p/K3_t_Department/{id}": {
      "put": {
        "x-controller-name": "K3TDepartmentController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TDepartmentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TDepartment PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TDepartment"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TDepartmentController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TDepartmentController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TDepartmentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TDepartment PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TDepartmentPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TDepartmentController.updateById"
      },
      "get": {
        "x-controller-name": "K3TDepartmentController",
        "x-operation-name": "findById",
        "tags": [
          "K3TDepartmentController"
        ],
        "responses": {
          "200": {
            "description": "K3TDepartment model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TDepartmentWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TDepartment.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TDepartmentController.findById"
      },
      "delete": {
        "x-controller-name": "K3TDepartmentController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TDepartmentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TDepartment DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TDepartmentController.deleteById"
      }
    },
    "/p/K3_t_Department": {
      "post": {
        "x-controller-name": "K3TDepartmentController",
        "x-operation-name": "create",
        "tags": [
          "K3TDepartmentController"
        ],
        "responses": {
          "200": {
            "description": "K3TDepartment model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TDepartment"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TDepartment"
              }
            }
          }
        },
        "operationId": "K3TDepartmentController.create"
      },
      "patch": {
        "x-controller-name": "K3TDepartmentController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TDepartmentController"
        ],
        "responses": {
          "200": {
            "description": "K3TDepartment PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TDepartment.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TDepartment>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TDepartmentPartial"
              }
            }
          }
        },
        "operationId": "K3TDepartmentController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TDepartmentController",
        "x-operation-name": "find",
        "tags": [
          "K3TDepartmentController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TDepartment model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TDepartmentWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TDepartment.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TDepartmentController.find"
      }
    },
    "/p/K3_t_ICItemBase/count": {
      "get": {
        "x-controller-name": "K3TIcItemBaseController",
        "x-operation-name": "count",
        "tags": [
          "K3TIcItemBaseController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemBase model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TIcItemBase.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TIcItemBase>"
                }
              }
            }
          }
        ],
        "operationId": "K3TIcItemBaseController.count"
      }
    },
    "/p/K3_t_ICItemBase/{id}": {
      "put": {
        "x-controller-name": "K3TIcItemBaseController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TIcItemBaseController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TIcItemBase PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TIcItemBase"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TIcItemBaseController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TIcItemBaseController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TIcItemBaseController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TIcItemBase PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TIcItemBasePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TIcItemBaseController.updateById"
      },
      "get": {
        "x-controller-name": "K3TIcItemBaseController",
        "x-operation-name": "findById",
        "tags": [
          "K3TIcItemBaseController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemBase model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemBaseWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemBase.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TIcItemBaseController.findById"
      },
      "delete": {
        "x-controller-name": "K3TIcItemBaseController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TIcItemBaseController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TIcItemBase DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TIcItemBaseController.deleteById"
      }
    },
    "/p/K3_t_ICItemBase": {
      "post": {
        "x-controller-name": "K3TIcItemBaseController",
        "x-operation-name": "create",
        "tags": [
          "K3TIcItemBaseController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemBase model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemBase"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TIcItemBase"
              }
            }
          }
        },
        "operationId": "K3TIcItemBaseController.create"
      },
      "patch": {
        "x-controller-name": "K3TIcItemBaseController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TIcItemBaseController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemBase PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TIcItemBase.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TIcItemBase>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TIcItemBasePartial"
              }
            }
          }
        },
        "operationId": "K3TIcItemBaseController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TIcItemBaseController",
        "x-operation-name": "find",
        "tags": [
          "K3TIcItemBaseController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TIcItemBase model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TIcItemBaseWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemBase.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TIcItemBaseController.find"
      }
    },
    "/p/K3_t_ICItemCore/count": {
      "get": {
        "x-controller-name": "K3TIcItemCoreController",
        "x-operation-name": "count",
        "tags": [
          "K3TIcItemCoreController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemCore model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TIcItemCore.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TIcItemCore>"
                }
              }
            }
          }
        ],
        "operationId": "K3TIcItemCoreController.count"
      }
    },
    "/p/K3_t_ICItemCore/{id}": {
      "put": {
        "x-controller-name": "K3TIcItemCoreController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TIcItemCoreController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TIcItemCore PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TIcItemCore"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TIcItemCoreController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TIcItemCoreController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TIcItemCoreController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TIcItemCore PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TIcItemCorePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TIcItemCoreController.updateById"
      },
      "get": {
        "x-controller-name": "K3TIcItemCoreController",
        "x-operation-name": "findById",
        "tags": [
          "K3TIcItemCoreController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemCore model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemCoreWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemCore.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TIcItemCoreController.findById"
      },
      "delete": {
        "x-controller-name": "K3TIcItemCoreController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TIcItemCoreController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TIcItemCore DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TIcItemCoreController.deleteById"
      }
    },
    "/p/K3_t_ICItemCore": {
      "post": {
        "x-controller-name": "K3TIcItemCoreController",
        "x-operation-name": "create",
        "tags": [
          "K3TIcItemCoreController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemCore model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemCore"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TIcItemCore"
              }
            }
          }
        },
        "operationId": "K3TIcItemCoreController.create"
      },
      "patch": {
        "x-controller-name": "K3TIcItemCoreController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TIcItemCoreController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemCore PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TIcItemCore.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TIcItemCore>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TIcItemCorePartial"
              }
            }
          }
        },
        "operationId": "K3TIcItemCoreController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TIcItemCoreController",
        "x-operation-name": "find",
        "tags": [
          "K3TIcItemCoreController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TIcItemCore model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TIcItemCoreWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemCore.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TIcItemCoreController.find"
      }
    },
    "/p/K3_t_ICItemCustom/count": {
      "get": {
        "x-controller-name": "K3TIcItemCustomController",
        "x-operation-name": "count",
        "tags": [
          "K3TIcItemCustomController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemCustom model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TIcItemCustom.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TIcItemCustom>"
                }
              }
            }
          }
        ],
        "operationId": "K3TIcItemCustomController.count"
      }
    },
    "/p/K3_t_ICItemCustom/{id}": {
      "put": {
        "x-controller-name": "K3TIcItemCustomController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TIcItemCustomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TIcItemCustom PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TIcItemCustom"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TIcItemCustomController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TIcItemCustomController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TIcItemCustomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TIcItemCustom PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TIcItemCustomPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TIcItemCustomController.updateById"
      },
      "get": {
        "x-controller-name": "K3TIcItemCustomController",
        "x-operation-name": "findById",
        "tags": [
          "K3TIcItemCustomController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemCustom model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemCustomWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemCustom.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TIcItemCustomController.findById"
      },
      "delete": {
        "x-controller-name": "K3TIcItemCustomController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TIcItemCustomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TIcItemCustom DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TIcItemCustomController.deleteById"
      }
    },
    "/p/K3_t_ICItemCustom": {
      "post": {
        "x-controller-name": "K3TIcItemCustomController",
        "x-operation-name": "create",
        "tags": [
          "K3TIcItemCustomController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemCustom model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemCustom"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TIcItemCustom"
              }
            }
          }
        },
        "operationId": "K3TIcItemCustomController.create"
      },
      "patch": {
        "x-controller-name": "K3TIcItemCustomController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TIcItemCustomController"
        ],
        "responses": {
          "200": {
            "description": "K3TIcItemCustom PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TIcItemCustom.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TIcItemCustom>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TIcItemCustomPartial"
              }
            }
          }
        },
        "operationId": "K3TIcItemCustomController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TIcItemCustomController",
        "x-operation-name": "find",
        "tags": [
          "K3TIcItemCustomController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TIcItemCustom model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TIcItemCustomWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TIcItemCustom.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TIcItemCustomController.find"
      }
    },
    "/p/K3_t_MeasureUnit/count": {
      "get": {
        "x-controller-name": "K3TMeasureUnitController",
        "x-operation-name": "count",
        "tags": [
          "K3TMeasureUnitController"
        ],
        "responses": {
          "200": {
            "description": "K3TMeasureUnit model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TMeasureUnit.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TMeasureUnit>"
                }
              }
            }
          }
        ],
        "operationId": "K3TMeasureUnitController.count"
      }
    },
    "/p/K3_t_MeasureUnit/{id}": {
      "put": {
        "x-controller-name": "K3TMeasureUnitController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TMeasureUnitController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TMeasureUnit PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TMeasureUnit"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TMeasureUnitController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TMeasureUnitController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TMeasureUnitController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TMeasureUnit PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TMeasureUnitPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TMeasureUnitController.updateById"
      },
      "get": {
        "x-controller-name": "K3TMeasureUnitController",
        "x-operation-name": "findById",
        "tags": [
          "K3TMeasureUnitController"
        ],
        "responses": {
          "200": {
            "description": "K3TMeasureUnit model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TMeasureUnitWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TMeasureUnit.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TMeasureUnitController.findById"
      },
      "delete": {
        "x-controller-name": "K3TMeasureUnitController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TMeasureUnitController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TMeasureUnit DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TMeasureUnitController.deleteById"
      }
    },
    "/p/K3_t_MeasureUnit": {
      "post": {
        "x-controller-name": "K3TMeasureUnitController",
        "x-operation-name": "create",
        "tags": [
          "K3TMeasureUnitController"
        ],
        "responses": {
          "200": {
            "description": "K3TMeasureUnit model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TMeasureUnit"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TMeasureUnit"
              }
            }
          }
        },
        "operationId": "K3TMeasureUnitController.create"
      },
      "patch": {
        "x-controller-name": "K3TMeasureUnitController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TMeasureUnitController"
        ],
        "responses": {
          "200": {
            "description": "K3TMeasureUnit PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TMeasureUnit.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TMeasureUnit>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TMeasureUnitPartial"
              }
            }
          }
        },
        "operationId": "K3TMeasureUnitController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TMeasureUnitController",
        "x-operation-name": "find",
        "tags": [
          "K3TMeasureUnitController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TMeasureUnit model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TMeasureUnitWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TMeasureUnit.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TMeasureUnitController.find"
      }
    },
    "/p/K3_t_Organization/count": {
      "get": {
        "x-controller-name": "K3TOrganizationController",
        "x-operation-name": "count",
        "tags": [
          "K3TOrganizationController"
        ],
        "responses": {
          "200": {
            "description": "K3TOrganization model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TOrganization.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TOrganization>"
                }
              }
            }
          }
        ],
        "operationId": "K3TOrganizationController.count"
      }
    },
    "/p/K3_t_Organization/{id}": {
      "put": {
        "x-controller-name": "K3TOrganizationController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TOrganizationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TOrganization PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TOrganization"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TOrganizationController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TOrganizationController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TOrganizationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TOrganization PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TOrganizationPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TOrganizationController.updateById"
      },
      "get": {
        "x-controller-name": "K3TOrganizationController",
        "x-operation-name": "findById",
        "tags": [
          "K3TOrganizationController"
        ],
        "responses": {
          "200": {
            "description": "K3TOrganization model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TOrganizationWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TOrganization.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TOrganizationController.findById"
      },
      "delete": {
        "x-controller-name": "K3TOrganizationController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TOrganizationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TOrganization DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TOrganizationController.deleteById"
      }
    },
    "/p/K3_t_Organization": {
      "post": {
        "x-controller-name": "K3TOrganizationController",
        "x-operation-name": "create",
        "tags": [
          "K3TOrganizationController"
        ],
        "responses": {
          "200": {
            "description": "K3TOrganization model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TOrganization"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TOrganization"
              }
            }
          }
        },
        "operationId": "K3TOrganizationController.create"
      },
      "patch": {
        "x-controller-name": "K3TOrganizationController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TOrganizationController"
        ],
        "responses": {
          "200": {
            "description": "K3TOrganization PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TOrganization.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TOrganization>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TOrganizationPartial"
              }
            }
          }
        },
        "operationId": "K3TOrganizationController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TOrganizationController",
        "x-operation-name": "find",
        "tags": [
          "K3TOrganizationController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TOrganization model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TOrganizationWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TOrganization.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TOrganizationController.find"
      }
    },
    "/p/K3_t_Stock/count": {
      "get": {
        "x-controller-name": "K3TStockController",
        "x-operation-name": "count",
        "tags": [
          "K3TStockController"
        ],
        "responses": {
          "200": {
            "description": "K3TStock model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TStock.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TStock>"
                }
              }
            }
          }
        ],
        "operationId": "K3TStockController.count"
      }
    },
    "/p/K3_t_Stock/{id}": {
      "put": {
        "x-controller-name": "K3TStockController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TStockController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TStock PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TStock"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TStockController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TStockController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TStockController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TStock PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TStockPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TStockController.updateById"
      },
      "get": {
        "x-controller-name": "K3TStockController",
        "x-operation-name": "findById",
        "tags": [
          "K3TStockController"
        ],
        "responses": {
          "200": {
            "description": "K3TStock model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TStockWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TStock.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TStockController.findById"
      },
      "delete": {
        "x-controller-name": "K3TStockController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TStockController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TStock DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TStockController.deleteById"
      }
    },
    "/p/K3_t_Stock": {
      "post": {
        "x-controller-name": "K3TStockController",
        "x-operation-name": "create",
        "tags": [
          "K3TStockController"
        ],
        "responses": {
          "200": {
            "description": "K3TStock model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TStock"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TStock"
              }
            }
          }
        },
        "operationId": "K3TStockController.create"
      },
      "patch": {
        "x-controller-name": "K3TStockController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TStockController"
        ],
        "responses": {
          "200": {
            "description": "K3TStock PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TStock.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TStock>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TStockPartial"
              }
            }
          }
        },
        "operationId": "K3TStockController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TStockController",
        "x-operation-name": "find",
        "tags": [
          "K3TStockController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TStock model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TStockWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TStock.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TStockController.find"
      }
    },
    "/p/K3_t_StockPlace/count": {
      "get": {
        "x-controller-name": "K3TStockPlaceController",
        "x-operation-name": "count",
        "tags": [
          "K3TStockPlaceController"
        ],
        "responses": {
          "200": {
            "description": "K3TStockPlace model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TStockPlace.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TStockPlace>"
                }
              }
            }
          }
        ],
        "operationId": "K3TStockPlaceController.count"
      }
    },
    "/p/K3_t_StockPlace/{id}": {
      "put": {
        "x-controller-name": "K3TStockPlaceController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TStockPlaceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TStockPlace PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TStockPlace"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TStockPlaceController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TStockPlaceController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TStockPlaceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TStockPlace PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TStockPlacePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TStockPlaceController.updateById"
      },
      "get": {
        "x-controller-name": "K3TStockPlaceController",
        "x-operation-name": "findById",
        "tags": [
          "K3TStockPlaceController"
        ],
        "responses": {
          "200": {
            "description": "K3TStockPlace model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TStockPlaceWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TStockPlace.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TStockPlaceController.findById"
      },
      "delete": {
        "x-controller-name": "K3TStockPlaceController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TStockPlaceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TStockPlace DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TStockPlaceController.deleteById"
      }
    },
    "/p/K3_t_StockPlace": {
      "post": {
        "x-controller-name": "K3TStockPlaceController",
        "x-operation-name": "create",
        "tags": [
          "K3TStockPlaceController"
        ],
        "responses": {
          "200": {
            "description": "K3TStockPlace model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TStockPlace"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TStockPlace"
              }
            }
          }
        },
        "operationId": "K3TStockPlaceController.create"
      },
      "patch": {
        "x-controller-name": "K3TStockPlaceController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TStockPlaceController"
        ],
        "responses": {
          "200": {
            "description": "K3TStockPlace PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TStockPlace.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TStockPlace>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TStockPlacePartial"
              }
            }
          }
        },
        "operationId": "K3TStockPlaceController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TStockPlaceController",
        "x-operation-name": "find",
        "tags": [
          "K3TStockPlaceController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TStockPlace model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TStockPlaceWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TStockPlace.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TStockPlaceController.find"
      }
    },
    "/p/K3_t_SubMessage/count": {
      "get": {
        "x-controller-name": "K3TSubMessageController",
        "x-operation-name": "count",
        "tags": [
          "K3TSubMessageController"
        ],
        "responses": {
          "200": {
            "description": "K3TSubMessage model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TSubMessage.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TSubMessage>"
                }
              }
            }
          }
        ],
        "operationId": "K3TSubMessageController.count"
      }
    },
    "/p/K3_t_SubMessage/{id}": {
      "put": {
        "x-controller-name": "K3TSubMessageController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TSubMessageController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TSubMessage PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TSubMessage"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TSubMessageController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TSubMessageController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TSubMessageController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TSubMessage PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TSubMessagePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TSubMessageController.updateById"
      },
      "get": {
        "x-controller-name": "K3TSubMessageController",
        "x-operation-name": "findById",
        "tags": [
          "K3TSubMessageController"
        ],
        "responses": {
          "200": {
            "description": "K3TSubMessage model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TSubMessageWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TSubMessage.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TSubMessageController.findById"
      },
      "delete": {
        "x-controller-name": "K3TSubMessageController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TSubMessageController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TSubMessage DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TSubMessageController.deleteById"
      }
    },
    "/p/K3_t_SubMessage": {
      "post": {
        "x-controller-name": "K3TSubMessageController",
        "x-operation-name": "create",
        "tags": [
          "K3TSubMessageController"
        ],
        "responses": {
          "200": {
            "description": "K3TSubMessage model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TSubMessage"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TSubMessage"
              }
            }
          }
        },
        "operationId": "K3TSubMessageController.create"
      },
      "patch": {
        "x-controller-name": "K3TSubMessageController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TSubMessageController"
        ],
        "responses": {
          "200": {
            "description": "K3TSubMessage PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TSubMessage.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TSubMessage>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TSubMessagePartial"
              }
            }
          }
        },
        "operationId": "K3TSubMessageController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TSubMessageController",
        "x-operation-name": "find",
        "tags": [
          "K3TSubMessageController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TSubMessage model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TSubMessageWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TSubMessage.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TSubMessageController.find"
      }
    },
    "/p/K3_t_Supplier/count": {
      "get": {
        "x-controller-name": "K3TSupplierController",
        "x-operation-name": "count",
        "tags": [
          "K3TSupplierController"
        ],
        "responses": {
          "200": {
            "description": "K3TSupplier model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TSupplier.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TSupplier>"
                }
              }
            }
          }
        ],
        "operationId": "K3TSupplierController.count"
      }
    },
    "/p/K3_t_Supplier/{id}": {
      "put": {
        "x-controller-name": "K3TSupplierController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TSupplierController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TSupplier PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TSupplier"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TSupplierController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TSupplierController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TSupplierController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TSupplier PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TSupplierPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TSupplierController.updateById"
      },
      "get": {
        "x-controller-name": "K3TSupplierController",
        "x-operation-name": "findById",
        "tags": [
          "K3TSupplierController"
        ],
        "responses": {
          "200": {
            "description": "K3TSupplier model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TSupplierWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TSupplier.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TSupplierController.findById"
      },
      "delete": {
        "x-controller-name": "K3TSupplierController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TSupplierController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TSupplier DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TSupplierController.deleteById"
      }
    },
    "/p/K3_t_Supplier": {
      "post": {
        "x-controller-name": "K3TSupplierController",
        "x-operation-name": "create",
        "tags": [
          "K3TSupplierController"
        ],
        "responses": {
          "200": {
            "description": "K3TSupplier model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TSupplier"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TSupplier"
              }
            }
          }
        },
        "operationId": "K3TSupplierController.create"
      },
      "patch": {
        "x-controller-name": "K3TSupplierController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TSupplierController"
        ],
        "responses": {
          "200": {
            "description": "K3TSupplier PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TSupplier.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TSupplier>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TSupplierPartial"
              }
            }
          }
        },
        "operationId": "K3TSupplierController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TSupplierController",
        "x-operation-name": "find",
        "tags": [
          "K3TSupplierController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TSupplier model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TSupplierWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TSupplier.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TSupplierController.find"
      }
    },
    "/p/K3_t_Voucher/count": {
      "get": {
        "x-controller-name": "K3TVoucherController",
        "x-operation-name": "count",
        "tags": [
          "K3TVoucherController"
        ],
        "responses": {
          "200": {
            "description": "K3TVoucher model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TVoucher.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TVoucher>"
                }
              }
            }
          }
        ],
        "operationId": "K3TVoucherController.count"
      }
    },
    "/p/K3_t_Voucher/{id}": {
      "put": {
        "x-controller-name": "K3TVoucherController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TVoucherController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TVoucher PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TVoucher"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TVoucherController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TVoucherController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TVoucherController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TVoucher PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TVoucherPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TVoucherController.updateById"
      },
      "get": {
        "x-controller-name": "K3TVoucherController",
        "x-operation-name": "findById",
        "tags": [
          "K3TVoucherController"
        ],
        "responses": {
          "200": {
            "description": "K3TVoucher model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TVoucherWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TVoucher.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TVoucherController.findById"
      },
      "delete": {
        "x-controller-name": "K3TVoucherController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TVoucherController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TVoucher DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TVoucherController.deleteById"
      }
    },
    "/p/K3_t_Voucher": {
      "post": {
        "x-controller-name": "K3TVoucherController",
        "x-operation-name": "create",
        "tags": [
          "K3TVoucherController"
        ],
        "responses": {
          "200": {
            "description": "K3TVoucher model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TVoucher"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TVoucher"
              }
            }
          }
        },
        "operationId": "K3TVoucherController.create"
      },
      "patch": {
        "x-controller-name": "K3TVoucherController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TVoucherController"
        ],
        "responses": {
          "200": {
            "description": "K3TVoucher PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TVoucher.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TVoucher>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TVoucherPartial"
              }
            }
          }
        },
        "operationId": "K3TVoucherController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TVoucherController",
        "x-operation-name": "find",
        "tags": [
          "K3TVoucherController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TVoucher model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TVoucherWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TVoucher.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TVoucherController.find"
      }
    },
    "/p/K3_t_VoucherEntry/count": {
      "get": {
        "x-controller-name": "K3TVoucherEntryController",
        "x-operation-name": "count",
        "tags": [
          "K3TVoucherEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3TVoucherEntry model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TVoucherEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TVoucherEntry>"
                }
              }
            }
          }
        ],
        "operationId": "K3TVoucherEntryController.count"
      }
    },
    "/p/K3_t_VoucherEntry/{id}": {
      "put": {
        "x-controller-name": "K3TVoucherEntryController",
        "x-operation-name": "replaceById",
        "tags": [
          "K3TVoucherEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TVoucherEntry PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TVoucherEntry"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TVoucherEntryController.replaceById"
      },
      "patch": {
        "x-controller-name": "K3TVoucherEntryController",
        "x-operation-name": "updateById",
        "tags": [
          "K3TVoucherEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TVoucherEntry PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TVoucherEntryPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "K3TVoucherEntryController.updateById"
      },
      "get": {
        "x-controller-name": "K3TVoucherEntryController",
        "x-operation-name": "findById",
        "tags": [
          "K3TVoucherEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3TVoucherEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TVoucherEntryWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TVoucherEntry.Filter"
                }
              }
            }
          }
        ],
        "operationId": "K3TVoucherEntryController.findById"
      },
      "delete": {
        "x-controller-name": "K3TVoucherEntryController",
        "x-operation-name": "deleteById",
        "tags": [
          "K3TVoucherEntryController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "K3TVoucherEntry DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "K3TVoucherEntryController.deleteById"
      }
    },
    "/p/K3_t_VoucherEntry": {
      "post": {
        "x-controller-name": "K3TVoucherEntryController",
        "x-operation-name": "create",
        "tags": [
          "K3TVoucherEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3TVoucherEntry model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TVoucherEntry"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewK3TVoucherEntry"
              }
            }
          }
        },
        "operationId": "K3TVoucherEntryController.create"
      },
      "patch": {
        "x-controller-name": "K3TVoucherEntryController",
        "x-operation-name": "updateAll",
        "tags": [
          "K3TVoucherEntryController"
        ],
        "responses": {
          "200": {
            "description": "K3TVoucherEntry PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "K3TVoucherEntry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<K3TVoucherEntry>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/K3TVoucherEntryPartial"
              }
            }
          }
        },
        "operationId": "K3TVoucherEntryController.updateAll"
      },
      "get": {
        "x-controller-name": "K3TVoucherEntryController",
        "x-operation-name": "find",
        "tags": [
          "K3TVoucherEntryController"
        ],
        "responses": {
          "200": {
            "description": "Array of K3TVoucherEntry model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/K3TVoucherEntryWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/K3TVoucherEntry.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "K3TVoucherEntryController.find"
      }
    },
    "/p/app_channel/batch": {
      "patch": {
        "x-controller-name": "AppChannelController",
        "x-operation-name": "update_batch",
        "tags": [
          "AppChannelController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppChannel PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/AppChannelPartial"
                }
              }
            }
          }
        },
        "operationId": "AppChannelController.update_batch"
      }
    },
    "/p/app_channel/count": {
      "get": {
        "x-controller-name": "AppChannelController",
        "x-operation-name": "count",
        "tags": [
          "AppChannelController"
        ],
        "responses": {
          "200": {
            "description": "AppChannel model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AppChannel.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AppChannel>"
                }
              }
            }
          }
        ],
        "operationId": "AppChannelController.count"
      }
    },
    "/p/app_channel/{id}": {
      "put": {
        "x-controller-name": "AppChannelController",
        "x-operation-name": "replaceById",
        "tags": [
          "AppChannelController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppChannel PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppChannel"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AppChannelController.replaceById"
      },
      "patch": {
        "x-controller-name": "AppChannelController",
        "x-operation-name": "updateById",
        "tags": [
          "AppChannelController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppChannel PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppChannelPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AppChannelController.updateById"
      },
      "get": {
        "x-controller-name": "AppChannelController",
        "x-operation-name": "findById",
        "tags": [
          "AppChannelController"
        ],
        "responses": {
          "200": {
            "description": "AppChannel model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppChannelWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppChannel.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AppChannelController.findById"
      },
      "delete": {
        "x-controller-name": "AppChannelController",
        "x-operation-name": "deleteById",
        "tags": [
          "AppChannelController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppChannel DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AppChannelController.deleteById"
      }
    },
    "/p/app_channel": {
      "post": {
        "x-controller-name": "AppChannelController",
        "x-operation-name": "create",
        "tags": [
          "AppChannelController"
        ],
        "responses": {
          "200": {
            "description": "AppChannel model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppChannel"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewAppChannel"
                }
              }
            }
          }
        },
        "operationId": "AppChannelController.create"
      },
      "patch": {
        "x-controller-name": "AppChannelController",
        "x-operation-name": "updateAll",
        "tags": [
          "AppChannelController"
        ],
        "responses": {
          "200": {
            "description": "AppChannel PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AppChannel.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AppChannel>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppChannelPartial"
              }
            }
          }
        },
        "operationId": "AppChannelController.updateAll"
      },
      "get": {
        "x-controller-name": "AppChannelController",
        "x-operation-name": "find",
        "tags": [
          "AppChannelController"
        ],
        "responses": {
          "200": {
            "description": "Array of AppChannel model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AppChannelWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppChannel.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AppChannelController.find"
      }
    },
    "/p/app_logs/batch": {
      "patch": {
        "x-controller-name": "AppLogsController",
        "x-operation-name": "update_batch",
        "tags": [
          "AppLogsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppLogs PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/AppLogsPartial"
                }
              }
            }
          }
        },
        "operationId": "AppLogsController.update_batch"
      }
    },
    "/p/app_logs/count": {
      "get": {
        "x-controller-name": "AppLogsController",
        "x-operation-name": "count",
        "tags": [
          "AppLogsController"
        ],
        "responses": {
          "200": {
            "description": "AppLogs model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AppLogs.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AppLogs>"
                }
              }
            }
          }
        ],
        "operationId": "AppLogsController.count"
      }
    },
    "/p/app_logs/{id}": {
      "put": {
        "x-controller-name": "AppLogsController",
        "x-operation-name": "replaceById",
        "tags": [
          "AppLogsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppLogs PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppLogs"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AppLogsController.replaceById"
      },
      "patch": {
        "x-controller-name": "AppLogsController",
        "x-operation-name": "updateById",
        "tags": [
          "AppLogsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppLogs PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppLogsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AppLogsController.updateById"
      },
      "get": {
        "x-controller-name": "AppLogsController",
        "x-operation-name": "findById",
        "tags": [
          "AppLogsController"
        ],
        "responses": {
          "200": {
            "description": "AppLogs model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppLogsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppLogs.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AppLogsController.findById"
      },
      "delete": {
        "x-controller-name": "AppLogsController",
        "x-operation-name": "deleteById",
        "tags": [
          "AppLogsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppLogs DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AppLogsController.deleteById"
      }
    },
    "/p/app_logs": {
      "post": {
        "x-controller-name": "AppLogsController",
        "x-operation-name": "create",
        "tags": [
          "AppLogsController"
        ],
        "responses": {
          "200": {
            "description": "AppLogs model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppLogs"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewAppLogs"
                }
              }
            }
          }
        },
        "operationId": "AppLogsController.create"
      },
      "patch": {
        "x-controller-name": "AppLogsController",
        "x-operation-name": "updateAll",
        "tags": [
          "AppLogsController"
        ],
        "responses": {
          "200": {
            "description": "AppLogs PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AppLogs.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AppLogs>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppLogsPartial"
              }
            }
          }
        },
        "operationId": "AppLogsController.updateAll"
      },
      "get": {
        "x-controller-name": "AppLogsController",
        "x-operation-name": "find",
        "tags": [
          "AppLogsController"
        ],
        "responses": {
          "200": {
            "description": "Array of AppLogs model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AppLogsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppLogs.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AppLogsController.find"
      }
    },
    "/p/app_message/batch": {
      "patch": {
        "x-controller-name": "AppMessageController",
        "x-operation-name": "update_batch",
        "tags": [
          "AppMessageController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppMessage PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/AppMessagePartial"
                }
              }
            }
          }
        },
        "operationId": "AppMessageController.update_batch"
      }
    },
    "/p/app_message/count": {
      "get": {
        "x-controller-name": "AppMessageController",
        "x-operation-name": "count",
        "tags": [
          "AppMessageController"
        ],
        "responses": {
          "200": {
            "description": "AppMessage model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AppMessage.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AppMessage>"
                }
              }
            }
          }
        ],
        "operationId": "AppMessageController.count"
      }
    },
    "/p/app_message/{id}": {
      "put": {
        "x-controller-name": "AppMessageController",
        "x-operation-name": "replaceById",
        "tags": [
          "AppMessageController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppMessage PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppMessage"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AppMessageController.replaceById"
      },
      "patch": {
        "x-controller-name": "AppMessageController",
        "x-operation-name": "updateById",
        "tags": [
          "AppMessageController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppMessage PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppMessagePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AppMessageController.updateById"
      },
      "get": {
        "x-controller-name": "AppMessageController",
        "x-operation-name": "findById",
        "tags": [
          "AppMessageController"
        ],
        "responses": {
          "200": {
            "description": "AppMessage model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppMessageWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppMessage.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AppMessageController.findById"
      },
      "delete": {
        "x-controller-name": "AppMessageController",
        "x-operation-name": "deleteById",
        "tags": [
          "AppMessageController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AppMessage DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AppMessageController.deleteById"
      }
    },
    "/p/app_message": {
      "post": {
        "x-controller-name": "AppMessageController",
        "x-operation-name": "create",
        "tags": [
          "AppMessageController"
        ],
        "responses": {
          "200": {
            "description": "AppMessage model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppMessage"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewAppMessage"
                }
              }
            }
          }
        },
        "operationId": "AppMessageController.create"
      },
      "patch": {
        "x-controller-name": "AppMessageController",
        "x-operation-name": "updateAll",
        "tags": [
          "AppMessageController"
        ],
        "responses": {
          "200": {
            "description": "AppMessage PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AppMessage.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AppMessage>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppMessagePartial"
              }
            }
          }
        },
        "operationId": "AppMessageController.updateAll"
      },
      "get": {
        "x-controller-name": "AppMessageController",
        "x-operation-name": "find",
        "tags": [
          "AppMessageController"
        ],
        "responses": {
          "200": {
            "description": "Array of AppMessage model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AppMessageWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppMessage.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AppMessageController.find"
      }
    },
    "/p/auth_group/batch": {
      "patch": {
        "x-controller-name": "AuthGroupController",
        "x-operation-name": "update_batch",
        "tags": [
          "AuthGroupController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthGroup PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/AuthGroupPartial"
                }
              }
            }
          }
        },
        "operationId": "AuthGroupController.update_batch"
      }
    },
    "/p/auth_group/count": {
      "get": {
        "x-controller-name": "AuthGroupController",
        "x-operation-name": "count",
        "tags": [
          "AuthGroupController"
        ],
        "responses": {
          "200": {
            "description": "AuthGroup model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AuthGroup.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AuthGroup>"
                }
              }
            }
          }
        ],
        "operationId": "AuthGroupController.count"
      }
    },
    "/p/auth_group/{id}": {
      "put": {
        "x-controller-name": "AuthGroupController",
        "x-operation-name": "replaceById",
        "tags": [
          "AuthGroupController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthGroup PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuthGroup"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AuthGroupController.replaceById"
      },
      "patch": {
        "x-controller-name": "AuthGroupController",
        "x-operation-name": "updateById",
        "tags": [
          "AuthGroupController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthGroup PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuthGroupPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AuthGroupController.updateById"
      },
      "get": {
        "x-controller-name": "AuthGroupController",
        "x-operation-name": "findById",
        "tags": [
          "AuthGroupController"
        ],
        "responses": {
          "200": {
            "description": "AuthGroup model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthGroupWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthGroup.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AuthGroupController.findById"
      },
      "delete": {
        "x-controller-name": "AuthGroupController",
        "x-operation-name": "deleteById",
        "tags": [
          "AuthGroupController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthGroup DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AuthGroupController.deleteById"
      }
    },
    "/p/auth_group": {
      "post": {
        "x-controller-name": "AuthGroupController",
        "x-operation-name": "create",
        "tags": [
          "AuthGroupController"
        ],
        "responses": {
          "200": {
            "description": "AuthGroup model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthGroup"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewAuthGroup"
                }
              }
            }
          }
        },
        "operationId": "AuthGroupController.create"
      },
      "patch": {
        "x-controller-name": "AuthGroupController",
        "x-operation-name": "updateAll",
        "tags": [
          "AuthGroupController"
        ],
        "responses": {
          "200": {
            "description": "AuthGroup PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AuthGroup.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AuthGroup>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuthGroupPartial"
              }
            }
          }
        },
        "operationId": "AuthGroupController.updateAll"
      },
      "get": {
        "x-controller-name": "AuthGroupController",
        "x-operation-name": "find",
        "tags": [
          "AuthGroupController"
        ],
        "responses": {
          "200": {
            "description": "Array of AuthGroup model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AuthGroupWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthGroup.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AuthGroupController.find"
      }
    },
    "/p/auth_group_permission": {
      "delete": {
        "x-controller-name": "AuthGroupPermissionsController",
        "x-operation-name": "deleteAll",
        "tags": [
          "AuthGroupPermissionsController"
        ],
        "responses": {
          "204": {
            "description": "AuthPermission DELETE success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AuthGroupPermissions.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AuthGroupPermissions>"
                }
              }
            }
          }
        ],
        "operationId": "AuthGroupPermissionsController.deleteAll"
      }
    },
    "/p/auth_group_permissions/batch": {
      "patch": {
        "x-controller-name": "AuthGroupPermissionsController",
        "x-operation-name": "update_batch",
        "tags": [
          "AuthGroupPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthGroupPermissions PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/AuthGroupPermissionsPartial"
                }
              }
            }
          }
        },
        "operationId": "AuthGroupPermissionsController.update_batch"
      }
    },
    "/p/auth_group_permissions/count": {
      "get": {
        "x-controller-name": "AuthGroupPermissionsController",
        "x-operation-name": "count",
        "tags": [
          "AuthGroupPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "AuthGroupPermissions model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AuthGroupPermissions.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AuthGroupPermissions>"
                }
              }
            }
          }
        ],
        "operationId": "AuthGroupPermissionsController.count"
      }
    },
    "/p/auth_group_permissions/{id}": {
      "put": {
        "x-controller-name": "AuthGroupPermissionsController",
        "x-operation-name": "replaceById",
        "tags": [
          "AuthGroupPermissionsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthGroupPermissions PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuthGroupPermissions"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AuthGroupPermissionsController.replaceById"
      },
      "patch": {
        "x-controller-name": "AuthGroupPermissionsController",
        "x-operation-name": "updateById",
        "tags": [
          "AuthGroupPermissionsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthGroupPermissions PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuthGroupPermissionsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AuthGroupPermissionsController.updateById"
      },
      "get": {
        "x-controller-name": "AuthGroupPermissionsController",
        "x-operation-name": "findById",
        "tags": [
          "AuthGroupPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "AuthGroupPermissions model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthGroupPermissionsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthGroupPermissions.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AuthGroupPermissionsController.findById"
      },
      "delete": {
        "x-controller-name": "AuthGroupPermissionsController",
        "x-operation-name": "deleteById",
        "tags": [
          "AuthGroupPermissionsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthGroupPermissions DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AuthGroupPermissionsController.deleteById"
      }
    },
    "/p/auth_group_permissions": {
      "post": {
        "x-controller-name": "AuthGroupPermissionsController",
        "x-operation-name": "create",
        "tags": [
          "AuthGroupPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "AuthGroupPermissions model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthGroupPermissions"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewAuthGroupPermissions"
                }
              }
            }
          }
        },
        "operationId": "AuthGroupPermissionsController.create"
      },
      "patch": {
        "x-controller-name": "AuthGroupPermissionsController",
        "x-operation-name": "updateAll",
        "tags": [
          "AuthGroupPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "AuthGroupPermissions PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AuthGroupPermissions.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AuthGroupPermissions>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuthGroupPermissionsPartial"
              }
            }
          }
        },
        "operationId": "AuthGroupPermissionsController.updateAll"
      },
      "get": {
        "x-controller-name": "AuthGroupPermissionsController",
        "x-operation-name": "find",
        "tags": [
          "AuthGroupPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "Array of AuthGroupPermissions model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AuthGroupPermissionsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthGroupPermissions.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AuthGroupPermissionsController.find"
      }
    },
    "/p/auth_permission/batch": {
      "patch": {
        "x-controller-name": "AuthPermissionController",
        "x-operation-name": "update_batch",
        "tags": [
          "AuthPermissionController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthPermission PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/AuthPermissionPartial"
                }
              }
            }
          }
        },
        "operationId": "AuthPermissionController.update_batch"
      }
    },
    "/p/auth_permission/count": {
      "get": {
        "x-controller-name": "AuthPermissionController",
        "x-operation-name": "count",
        "tags": [
          "AuthPermissionController"
        ],
        "responses": {
          "200": {
            "description": "AuthPermission model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AuthPermission.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AuthPermission>"
                }
              }
            }
          }
        ],
        "operationId": "AuthPermissionController.count"
      }
    },
    "/p/auth_permission/{id}": {
      "put": {
        "x-controller-name": "AuthPermissionController",
        "x-operation-name": "replaceById",
        "tags": [
          "AuthPermissionController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthPermission PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuthPermission"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AuthPermissionController.replaceById"
      },
      "patch": {
        "x-controller-name": "AuthPermissionController",
        "x-operation-name": "updateById",
        "tags": [
          "AuthPermissionController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthPermission PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuthPermissionPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AuthPermissionController.updateById"
      },
      "get": {
        "x-controller-name": "AuthPermissionController",
        "x-operation-name": "findById",
        "tags": [
          "AuthPermissionController"
        ],
        "responses": {
          "200": {
            "description": "AuthPermission model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthPermissionWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthPermission.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AuthPermissionController.findById"
      },
      "delete": {
        "x-controller-name": "AuthPermissionController",
        "x-operation-name": "deleteById",
        "tags": [
          "AuthPermissionController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthPermission DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AuthPermissionController.deleteById"
      }
    },
    "/p/auth_permission": {
      "post": {
        "x-controller-name": "AuthPermissionController",
        "x-operation-name": "create",
        "tags": [
          "AuthPermissionController"
        ],
        "responses": {
          "200": {
            "description": "AuthPermission model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthPermission"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewAuthPermission"
                }
              }
            }
          }
        },
        "operationId": "AuthPermissionController.create"
      },
      "patch": {
        "x-controller-name": "AuthPermissionController",
        "x-operation-name": "updateAll",
        "tags": [
          "AuthPermissionController"
        ],
        "responses": {
          "200": {
            "description": "AuthPermission PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AuthPermission.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AuthPermission>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuthPermissionPartial"
              }
            }
          }
        },
        "operationId": "AuthPermissionController.updateAll"
      },
      "get": {
        "x-controller-name": "AuthPermissionController",
        "x-operation-name": "find",
        "tags": [
          "AuthPermissionController"
        ],
        "responses": {
          "200": {
            "description": "Array of AuthPermission model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AuthPermissionWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AuthPermission.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AuthPermissionController.find"
      }
    },
    "/p/ax_buffer/batch": {
      "patch": {
        "x-controller-name": "AxBufferController",
        "x-operation-name": "update_batch",
        "tags": [
          "AxBufferController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AuthBuffer PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/AxBufferPartial"
                }
              }
            }
          }
        },
        "operationId": "AxBufferController.update_batch"
      }
    },
    "/p/ax_buffer/count": {
      "get": {
        "x-controller-name": "AxBufferController",
        "x-operation-name": "count",
        "tags": [
          "AxBufferController"
        ],
        "responses": {
          "200": {
            "description": "AxBuffer model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AxBuffer.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AxBuffer>"
                }
              }
            }
          }
        ],
        "operationId": "AxBufferController.count"
      }
    },
    "/p/ax_buffer/{id}": {
      "put": {
        "x-controller-name": "AxBufferController",
        "x-operation-name": "replaceById",
        "tags": [
          "AxBufferController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxBuffer PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxBuffer"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AxBufferController.replaceById"
      },
      "patch": {
        "x-controller-name": "AxBufferController",
        "x-operation-name": "updateById",
        "tags": [
          "AxBufferController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxBuffer PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxBufferPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AxBufferController.updateById"
      },
      "get": {
        "x-controller-name": "AxBufferController",
        "x-operation-name": "findById",
        "tags": [
          "AxBufferController"
        ],
        "responses": {
          "200": {
            "description": "AxBuffer model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxBufferWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxBuffer.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AxBufferController.findById"
      },
      "delete": {
        "x-controller-name": "AxBufferController",
        "x-operation-name": "deleteById",
        "tags": [
          "AxBufferController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxBuffer DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AxBufferController.deleteById"
      }
    },
    "/p/ax_buffer": {
      "post": {
        "x-controller-name": "AxBufferController",
        "x-operation-name": "create",
        "tags": [
          "AxBufferController"
        ],
        "responses": {
          "200": {
            "description": "AxBuffer model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxBuffer"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewAxBuffer"
                }
              }
            }
          }
        },
        "operationId": "AxBufferController.create"
      },
      "patch": {
        "x-controller-name": "AxBufferController",
        "x-operation-name": "updateAll",
        "tags": [
          "AxBufferController"
        ],
        "responses": {
          "200": {
            "description": "AxBuffer PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AxBuffer.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AxBuffer>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxBufferPartial"
              }
            }
          }
        },
        "operationId": "AxBufferController.updateAll"
      },
      "get": {
        "x-controller-name": "AxBufferController",
        "x-operation-name": "find",
        "tags": [
          "AxBufferController"
        ],
        "responses": {
          "200": {
            "description": "Array of AxBuffer model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AxBufferWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxBuffer.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AxBufferController.find"
      }
    },
    "/p/ax_demand/batch": {
      "patch": {
        "x-controller-name": "AxDemandController",
        "x-operation-name": "update_batch",
        "tags": [
          "AxDemandController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxDemand PATCH success count"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/AxDemandPartial"
                }
              }
            }
          }
        },
        "operationId": "AxDemandController.update_batch"
      }
    },
    "/p/ax_demand/count": {
      "get": {
        "x-controller-name": "AxDemandController",
        "x-operation-name": "count",
        "tags": [
          "AxDemandController"
        ],
        "responses": {
          "200": {
            "description": "AxDemand model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AxDemand.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AxDemand>"
                }
              }
            }
          }
        ],
        "operationId": "AxDemandController.count"
      }
    },
    "/p/ax_demand/{id}": {
      "put": {
        "x-controller-name": "AxDemandController",
        "x-operation-name": "replaceById",
        "tags": [
          "AxDemandController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxDemand PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxDemand"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AxDemandController.replaceById"
      },
      "patch": {
        "x-controller-name": "AxDemandController",
        "x-operation-name": "updateById",
        "tags": [
          "AxDemandController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxDemand PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxDemandPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AxDemandController.updateById"
      },
      "get": {
        "x-controller-name": "AxDemandController",
        "x-operation-name": "findById",
        "tags": [
          "AxDemandController"
        ],
        "responses": {
          "200": {
            "description": "AxDemand model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxDemandWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxDemand.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AxDemandController.findById"
      },
      "delete": {
        "x-controller-name": "AxDemandController",
        "x-operation-name": "deleteById",
        "tags": [
          "AxDemandController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxDemand DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AxDemandController.deleteById"
      }
    },
    "/p/ax_demand": {
      "post": {
        "x-controller-name": "AxDemandController",
        "x-operation-name": "create",
        "tags": [
          "AxDemandController"
        ],
        "responses": {
          "200": {
            "description": "AxDemand model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxDemand"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewAxDemand"
                }
              }
            }
          }
        },
        "operationId": "AxDemandController.create"
      },
      "patch": {
        "x-controller-name": "AxDemandController",
        "x-operation-name": "updateAll",
        "tags": [
          "AxDemandController"
        ],
        "responses": {
          "200": {
            "description": "AxDemand PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AxDemand.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AxDemand>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxDemandPartial"
              }
            }
          }
        },
        "operationId": "AxDemandController.updateAll"
      },
      "get": {
        "x-controller-name": "AxDemandController",
        "x-operation-name": "find",
        "tags": [
          "AxDemandController"
        ],
        "responses": {
          "200": {
            "description": "Array of AxDemand model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AxDemandWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxDemand.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AxDemandController.find"
      }
    },
    "/p/ax_manager/batch": {
      "patch": {
        "x-controller-name": "AxManagerController",
        "x-operation-name": "update_batch",
        "tags": [
          "AxManagerController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxManger PATCH success count"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/AxManagerPartial"
                }
              }
            }
          }
        },
        "operationId": "AxManagerController.update_batch"
      }
    },
    "/p/ax_manager/count": {
      "get": {
        "x-controller-name": "AxManagerController",
        "x-operation-name": "count",
        "tags": [
          "AxManagerController"
        ],
        "responses": {
          "200": {
            "description": "AxManager model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AxManager.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AxManager>"
                }
              }
            }
          }
        ],
        "operationId": "AxManagerController.count"
      }
    },
    "/p/ax_manager/{id}": {
      "put": {
        "x-controller-name": "AxManagerController",
        "x-operation-name": "replaceById",
        "tags": [
          "AxManagerController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxManager PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxManager"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AxManagerController.replaceById"
      },
      "patch": {
        "x-controller-name": "AxManagerController",
        "x-operation-name": "updateById",
        "tags": [
          "AxManagerController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxManager PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxManagerPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AxManagerController.updateById"
      },
      "get": {
        "x-controller-name": "AxManagerController",
        "x-operation-name": "findById",
        "tags": [
          "AxManagerController"
        ],
        "responses": {
          "200": {
            "description": "AxManager model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxManagerWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxManager.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AxManagerController.findById"
      },
      "delete": {
        "x-controller-name": "AxManagerController",
        "x-operation-name": "deleteById",
        "tags": [
          "AxManagerController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxManager DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "AxManagerController.deleteById"
      }
    },
    "/p/ax_manager": {
      "post": {
        "x-controller-name": "AxManagerController",
        "x-operation-name": "create",
        "tags": [
          "AxManagerController"
        ],
        "responses": {
          "200": {
            "description": "AxManager model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxManager"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewAxManager"
                }
              }
            }
          }
        },
        "operationId": "AxManagerController.create"
      },
      "patch": {
        "x-controller-name": "AxManagerController",
        "x-operation-name": "updateAll",
        "tags": [
          "AxManagerController"
        ],
        "responses": {
          "200": {
            "description": "AxManager PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AxManager.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AxManager>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxManagerPartial"
              }
            }
          }
        },
        "operationId": "AxManagerController.updateAll"
      },
      "get": {
        "x-controller-name": "AxManagerController",
        "x-operation-name": "find",
        "tags": [
          "AxManagerController"
        ],
        "responses": {
          "200": {
            "description": "Array of AxManager model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AxManagerWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxManager.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AxManagerController.find"
      }
    },
    "/p/ax_operationplan/batch": {
      "patch": {
        "x-controller-name": "AxOperationplanController",
        "x-operation-name": "update_batch",
        "tags": [
          "AxOperationplanController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxOperationplan PATCH success count"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/AxOperationplanPartial"
                }
              }
            }
          }
        },
        "operationId": "AxOperationplanController.update_batch"
      }
    },
    "/p/ax_operationplan/count": {
      "get": {
        "x-controller-name": "AxOperationplanController",
        "x-operation-name": "count",
        "tags": [
          "AxOperationplanController"
        ],
        "responses": {
          "200": {
            "description": "AxOperationplan model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AxOperationplan.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AxOperationplan>"
                }
              }
            }
          }
        ],
        "operationId": "AxOperationplanController.count"
      }
    },
    "/p/ax_operationplan/{id}": {
      "put": {
        "x-controller-name": "AxOperationplanController",
        "x-operation-name": "replaceById",
        "tags": [
          "AxOperationplanController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxOperationplan PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxOperationplan"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AxOperationplanController.replaceById"
      },
      "patch": {
        "x-controller-name": "AxOperationplanController",
        "x-operation-name": "updateById",
        "tags": [
          "AxOperationplanController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxOperationplan PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxOperationplanPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AxOperationplanController.updateById"
      },
      "get": {
        "x-controller-name": "AxOperationplanController",
        "x-operation-name": "findById",
        "tags": [
          "AxOperationplanController"
        ],
        "responses": {
          "200": {
            "description": "AxOperationplan model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxOperationplanWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxOperationplan.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AxOperationplanController.findById"
      },
      "delete": {
        "x-controller-name": "AxOperationplanController",
        "x-operation-name": "deleteById",
        "tags": [
          "AxOperationplanController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AxOperationplan DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AxOperationplanController.deleteById"
      }
    },
    "/p/ax_operationplan": {
      "post": {
        "x-controller-name": "AxOperationplanController",
        "x-operation-name": "create",
        "tags": [
          "AxOperationplanController"
        ],
        "responses": {
          "200": {
            "description": "AxOperationplan model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxOperationplan"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewAxOperationplan"
                }
              }
            }
          }
        },
        "operationId": "AxOperationplanController.create"
      },
      "patch": {
        "x-controller-name": "AxOperationplanController",
        "x-operation-name": "updateAll",
        "tags": [
          "AxOperationplanController"
        ],
        "responses": {
          "200": {
            "description": "AxOperationplan PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AxOperationplan.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AxOperationplan>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AxOperationplanPartial"
              }
            }
          }
        },
        "operationId": "AxOperationplanController.updateAll"
      },
      "get": {
        "x-controller-name": "AxOperationplanController",
        "x-operation-name": "find",
        "tags": [
          "AxOperationplanController"
        ],
        "responses": {
          "200": {
            "description": "Array of AxOperationplan model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AxOperationplanWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AxOperationplan.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AxOperationplanController.find"
      }
    },
    "/p/bom/batch": {
      "patch": {
        "x-controller-name": "BomController",
        "x-operation-name": "update_batch",
        "tags": [
          "BomController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Bom PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/BomPartial"
                }
              }
            }
          }
        },
        "operationId": "BomController.update_batch"
      }
    },
    "/p/bom/count": {
      "get": {
        "x-controller-name": "BomController",
        "x-operation-name": "count",
        "tags": [
          "BomController"
        ],
        "responses": {
          "200": {
            "description": "Bom model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Bom.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Bom>"
                }
              }
            }
          }
        ],
        "operationId": "BomController.count"
      }
    },
    "/p/bom/{id}": {
      "put": {
        "x-controller-name": "BomController",
        "x-operation-name": "replaceById",
        "tags": [
          "BomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Bom PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bom"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "BomController.replaceById"
      },
      "patch": {
        "x-controller-name": "BomController",
        "x-operation-name": "updateById",
        "tags": [
          "BomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Bom PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/BomPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "BomController.updateById"
      },
      "get": {
        "x-controller-name": "BomController",
        "x-operation-name": "findById",
        "tags": [
          "BomController"
        ],
        "responses": {
          "200": {
            "description": "Bom model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BomWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bom.Filter"
                }
              }
            }
          }
        ],
        "operationId": "BomController.findById"
      },
      "delete": {
        "x-controller-name": "BomController",
        "x-operation-name": "deleteById",
        "tags": [
          "BomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Bom DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "BomController.deleteById"
      }
    },
    "/p/bom": {
      "post": {
        "x-controller-name": "BomController",
        "x-operation-name": "create",
        "tags": [
          "BomController"
        ],
        "responses": {
          "200": {
            "description": "Bom model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bom"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewBom"
                }
              }
            }
          }
        },
        "operationId": "BomController.create"
      },
      "patch": {
        "x-controller-name": "BomController",
        "x-operation-name": "updateAll",
        "tags": [
          "BomController"
        ],
        "responses": {
          "200": {
            "description": "Bom PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Bom.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Bom>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/BomPartial"
              }
            }
          }
        },
        "operationId": "BomController.updateAll"
      },
      "get": {
        "x-controller-name": "BomController",
        "x-operation-name": "find",
        "tags": [
          "BomController"
        ],
        "responses": {
          "200": {
            "description": "Array of Bom model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BomWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bom.Filter"
                }
              }
            }
          }
        ],
        "operationId": "BomController.find"
      }
    },
    "/p/bom2/batch": {
      "patch": {
        "x-controller-name": "Bom2Controller",
        "x-operation-name": "update_batch",
        "tags": [
          "Bom2Controller"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Bom2 PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/Bom2Partial"
                }
              }
            }
          }
        },
        "operationId": "Bom2Controller.update_batch"
      }
    },
    "/p/bom2/count": {
      "get": {
        "x-controller-name": "Bom2Controller",
        "x-operation-name": "count",
        "tags": [
          "Bom2Controller"
        ],
        "responses": {
          "200": {
            "description": "Bom2 model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Bom2.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Bom2>"
                }
              }
            }
          }
        ],
        "operationId": "Bom2Controller.count"
      }
    },
    "/p/bom2/{id}": {
      "put": {
        "x-controller-name": "Bom2Controller",
        "x-operation-name": "replaceById",
        "tags": [
          "Bom2Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Bom2 PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bom2"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "Bom2Controller.replaceById"
      },
      "patch": {
        "x-controller-name": "Bom2Controller",
        "x-operation-name": "updateById",
        "tags": [
          "Bom2Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Bom2 PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bom2Partial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "Bom2Controller.updateById"
      },
      "get": {
        "x-controller-name": "Bom2Controller",
        "x-operation-name": "findById",
        "tags": [
          "Bom2Controller"
        ],
        "responses": {
          "200": {
            "description": "Bom2 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bom2WithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bom2.Filter"
                }
              }
            }
          }
        ],
        "operationId": "Bom2Controller.findById"
      },
      "delete": {
        "x-controller-name": "Bom2Controller",
        "x-operation-name": "deleteById",
        "tags": [
          "Bom2Controller"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Bom2 DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "Bom2Controller.deleteById"
      }
    },
    "/p/bom2": {
      "post": {
        "x-controller-name": "Bom2Controller",
        "x-operation-name": "create",
        "tags": [
          "Bom2Controller"
        ],
        "responses": {
          "200": {
            "description": "Bom2 model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bom2"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewBom2"
                }
              }
            }
          }
        },
        "operationId": "Bom2Controller.create"
      },
      "patch": {
        "x-controller-name": "Bom2Controller",
        "x-operation-name": "updateAll",
        "tags": [
          "Bom2Controller"
        ],
        "responses": {
          "200": {
            "description": "Bom2 PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Bom2.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Bom2>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bom2Partial"
              }
            }
          }
        },
        "operationId": "Bom2Controller.updateAll"
      },
      "get": {
        "x-controller-name": "Bom2Controller",
        "x-operation-name": "find",
        "tags": [
          "Bom2Controller"
        ],
        "responses": {
          "200": {
            "description": "Array of Bom2 model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Bom2WithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bom2.Filter"
                }
              }
            }
          }
        ],
        "operationId": "Bom2Controller.find"
      }
    },
    "/p/buffer/batch": {
      "patch": {
        "x-controller-name": "BufferController",
        "x-operation-name": "update_batch",
        "tags": [
          "BufferController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Buffer PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/BufferPartial"
                }
              }
            }
          }
        },
        "operationId": "BufferController.update_batch"
      }
    },
    "/p/buffer/count": {
      "get": {
        "x-controller-name": "BufferController",
        "x-operation-name": "count",
        "tags": [
          "BufferController"
        ],
        "responses": {
          "200": {
            "description": "Buffer model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Buffer.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Buffer>"
                }
              }
            }
          }
        ],
        "operationId": "BufferController.count"
      }
    },
    "/p/buffer/{id}": {
      "put": {
        "x-controller-name": "BufferController",
        "x-operation-name": "replaceById",
        "tags": [
          "BufferController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Buffer PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Buffer"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "BufferController.replaceById"
      },
      "patch": {
        "x-controller-name": "BufferController",
        "x-operation-name": "updateById",
        "tags": [
          "BufferController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Buffer PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/BufferPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "BufferController.updateById"
      },
      "get": {
        "x-controller-name": "BufferController",
        "x-operation-name": "findById",
        "tags": [
          "BufferController"
        ],
        "responses": {
          "200": {
            "description": "Buffer model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BufferWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Buffer.Filter"
                }
              }
            }
          }
        ],
        "operationId": "BufferController.findById"
      },
      "delete": {
        "x-controller-name": "BufferController",
        "x-operation-name": "deleteById",
        "tags": [
          "BufferController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Buffer DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "BufferController.deleteById"
      }
    },
    "/p/buffer": {
      "post": {
        "x-controller-name": "BufferController",
        "x-operation-name": "create",
        "tags": [
          "BufferController"
        ],
        "responses": {
          "200": {
            "description": "Buffer model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Buffer"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewBuffer"
                }
              }
            }
          }
        },
        "operationId": "BufferController.create"
      },
      "patch": {
        "x-controller-name": "BufferController",
        "x-operation-name": "updateAll",
        "tags": [
          "BufferController"
        ],
        "responses": {
          "200": {
            "description": "Buffer PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Buffer.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Buffer>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/BufferPartial"
              }
            }
          }
        },
        "operationId": "BufferController.updateAll"
      },
      "get": {
        "x-controller-name": "BufferController",
        "x-operation-name": "find",
        "tags": [
          "BufferController"
        ],
        "responses": {
          "200": {
            "description": "Array of Buffer model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/BufferWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Buffer.Filter"
                }
              }
            }
          }
        ],
        "operationId": "BufferController.find"
      }
    },
    "/p/buffers/{id}/item": {
      "get": {
        "x-controller-name": "BufferItemController",
        "x-operation-name": "getItem",
        "tags": [
          "BufferItemController"
        ],
        "responses": {
          "200": {
            "description": "Item belonging to Buffer",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Item"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "BufferItemController.getItem"
      }
    },
    "/p/buffers/{id}/location": {
      "get": {
        "x-controller-name": "BufferLocationController",
        "x-operation-name": "getLocation",
        "tags": [
          "BufferLocationController"
        ],
        "responses": {
          "200": {
            "description": "Location belonging to Buffer",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Location"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "BufferLocationController.getLocation"
      }
    },
    "/p/calendar/batch": {
      "patch": {
        "x-controller-name": "CalendarController",
        "x-operation-name": "update_batch",
        "tags": [
          "CalendarController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Calendar PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CalendarPartial"
                }
              }
            }
          }
        },
        "operationId": "CalendarController.update_batch"
      }
    },
    "/p/calendar/count": {
      "get": {
        "x-controller-name": "CalendarController",
        "x-operation-name": "count",
        "tags": [
          "CalendarController"
        ],
        "responses": {
          "200": {
            "description": "Calendar model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Calendar.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Calendar>"
                }
              }
            }
          }
        ],
        "operationId": "CalendarController.count"
      }
    },
    "/p/calendar/{id}": {
      "put": {
        "x-controller-name": "CalendarController",
        "x-operation-name": "replaceById",
        "tags": [
          "CalendarController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Calendar PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Calendar"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CalendarController.replaceById"
      },
      "patch": {
        "x-controller-name": "CalendarController",
        "x-operation-name": "updateById",
        "tags": [
          "CalendarController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Calendar PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CalendarPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CalendarController.updateById"
      },
      "get": {
        "x-controller-name": "CalendarController",
        "x-operation-name": "findById",
        "tags": [
          "CalendarController"
        ],
        "responses": {
          "200": {
            "description": "Calendar model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CalendarWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Calendar.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CalendarController.findById"
      },
      "delete": {
        "x-controller-name": "CalendarController",
        "x-operation-name": "deleteById",
        "tags": [
          "CalendarController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Calendar DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "CalendarController.deleteById"
      }
    },
    "/p/calendar": {
      "post": {
        "x-controller-name": "CalendarController",
        "x-operation-name": "create",
        "tags": [
          "CalendarController"
        ],
        "responses": {
          "200": {
            "description": "Calendar model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Calendar"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCalendar"
                }
              }
            }
          }
        },
        "operationId": "CalendarController.create"
      },
      "patch": {
        "x-controller-name": "CalendarController",
        "x-operation-name": "updateAll",
        "tags": [
          "CalendarController"
        ],
        "responses": {
          "200": {
            "description": "Calendar PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Calendar.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Calendar>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CalendarPartial"
              }
            }
          }
        },
        "operationId": "CalendarController.updateAll"
      },
      "get": {
        "x-controller-name": "CalendarController",
        "x-operation-name": "find",
        "tags": [
          "CalendarController"
        ],
        "responses": {
          "200": {
            "description": "Array of Calendar model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CalendarWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Calendar.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CalendarController.find"
      }
    },
    "/p/calendarbucket/batch": {
      "patch": {
        "x-controller-name": "CalendarbucketController",
        "x-operation-name": "update_batch",
        "tags": [
          "CalendarbucketController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Calendarbucket PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CalendarbucketPartial"
                }
              }
            }
          }
        },
        "operationId": "CalendarbucketController.update_batch"
      }
    },
    "/p/calendarbucket/count": {
      "get": {
        "x-controller-name": "CalendarbucketController",
        "x-operation-name": "count",
        "tags": [
          "CalendarbucketController"
        ],
        "responses": {
          "200": {
            "description": "Calendarbucket model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Calendarbucket.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Calendarbucket>"
                }
              }
            }
          }
        ],
        "operationId": "CalendarbucketController.count"
      }
    },
    "/p/calendarbucket/{id}": {
      "put": {
        "x-controller-name": "CalendarbucketController",
        "x-operation-name": "replaceById",
        "tags": [
          "CalendarbucketController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Calendarbucket PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Calendarbucket"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CalendarbucketController.replaceById"
      },
      "patch": {
        "x-controller-name": "CalendarbucketController",
        "x-operation-name": "updateById",
        "tags": [
          "CalendarbucketController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Calendarbucket PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CalendarbucketPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CalendarbucketController.updateById"
      },
      "get": {
        "x-controller-name": "CalendarbucketController",
        "x-operation-name": "findById",
        "tags": [
          "CalendarbucketController"
        ],
        "responses": {
          "200": {
            "description": "Calendarbucket model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CalendarbucketWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Calendarbucket.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CalendarbucketController.findById"
      },
      "delete": {
        "x-controller-name": "CalendarbucketController",
        "x-operation-name": "deleteById",
        "tags": [
          "CalendarbucketController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Calendarbucket DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CalendarbucketController.deleteById"
      }
    },
    "/p/calendarbucket": {
      "post": {
        "x-controller-name": "CalendarbucketController",
        "x-operation-name": "create",
        "tags": [
          "CalendarbucketController"
        ],
        "responses": {
          "200": {
            "description": "Calendarbucket model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Calendarbucket"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCalendarbucket"
                }
              }
            }
          }
        },
        "operationId": "CalendarbucketController.create"
      },
      "patch": {
        "x-controller-name": "CalendarbucketController",
        "x-operation-name": "updateAll",
        "tags": [
          "CalendarbucketController"
        ],
        "responses": {
          "200": {
            "description": "Calendarbucket PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Calendarbucket.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Calendarbucket>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CalendarbucketPartial"
              }
            }
          }
        },
        "operationId": "CalendarbucketController.updateAll"
      },
      "get": {
        "x-controller-name": "CalendarbucketController",
        "x-operation-name": "find",
        "tags": [
          "CalendarbucketController"
        ],
        "responses": {
          "200": {
            "description": "Array of Calendarbucket model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CalendarbucketWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Calendarbucket.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CalendarbucketController.find"
      },
      "delete": {
        "x-controller-name": "CalendarbucketController",
        "x-operation-name": "deleteAll",
        "tags": [
          "CalendarbucketController"
        ],
        "responses": {
          "204": {
            "description": "Calendarbucket DELETE success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Calendarbucket.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Calendarbucket>"
                }
              }
            }
          }
        ],
        "operationId": "CalendarbucketController.deleteAll"
      }
    },
    "/p/common_attribute/batch": {
      "patch": {
        "x-controller-name": "CommonAttributeController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonAttributeController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonAttribute PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonAttributePartial"
                }
              }
            }
          }
        },
        "operationId": "CommonAttributeController.update_batch"
      }
    },
    "/p/common_attribute/count": {
      "get": {
        "x-controller-name": "CommonAttributeController",
        "x-operation-name": "count",
        "tags": [
          "CommonAttributeController"
        ],
        "responses": {
          "200": {
            "description": "CommonAttribute model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonAttribute.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonAttribute>"
                }
              }
            }
          }
        ],
        "operationId": "CommonAttributeController.count"
      }
    },
    "/p/common_attribute/{id}": {
      "put": {
        "x-controller-name": "CommonAttributeController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonAttributeController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonAttribute PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonAttribute"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonAttributeController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonAttributeController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonAttributeController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonAttribute PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonAttributePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonAttributeController.updateById"
      },
      "get": {
        "x-controller-name": "CommonAttributeController",
        "x-operation-name": "findById",
        "tags": [
          "CommonAttributeController"
        ],
        "responses": {
          "200": {
            "description": "CommonAttribute model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonAttributeWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonAttribute.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonAttributeController.findById"
      },
      "delete": {
        "x-controller-name": "CommonAttributeController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonAttributeController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonAttribute DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CommonAttributeController.deleteById"
      }
    },
    "/p/common_attribute": {
      "post": {
        "x-controller-name": "CommonAttributeController",
        "x-operation-name": "create",
        "tags": [
          "CommonAttributeController"
        ],
        "responses": {
          "200": {
            "description": "CommonAttribute model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonAttribute"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonAttribute"
                }
              }
            }
          }
        },
        "operationId": "CommonAttributeController.create"
      },
      "patch": {
        "x-controller-name": "CommonAttributeController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonAttributeController"
        ],
        "responses": {
          "200": {
            "description": "CommonAttribute PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonAttribute.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonAttribute>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonAttributePartial"
              }
            }
          }
        },
        "operationId": "CommonAttributeController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonAttributeController",
        "x-operation-name": "find",
        "tags": [
          "CommonAttributeController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonAttribute model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonAttributeWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonAttribute.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonAttributeController.find"
      }
    },
    "/p/common_bucket/batch": {
      "patch": {
        "x-controller-name": "CommonBucketController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonBucketController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonBucket PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonBucketPartial"
                }
              }
            }
          }
        },
        "operationId": "CommonBucketController.update_batch"
      }
    },
    "/p/common_bucket/count": {
      "get": {
        "x-controller-name": "CommonBucketController",
        "x-operation-name": "count",
        "tags": [
          "CommonBucketController"
        ],
        "responses": {
          "200": {
            "description": "CommonBucket model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonBucket.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonBucket>"
                }
              }
            }
          }
        ],
        "operationId": "CommonBucketController.count"
      }
    },
    "/p/common_bucket/{id}": {
      "put": {
        "x-controller-name": "CommonBucketController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonBucketController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonBucket PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonBucket"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonBucketController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonBucketController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonBucketController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonBucket PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonBucketPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonBucketController.updateById"
      },
      "get": {
        "x-controller-name": "CommonBucketController",
        "x-operation-name": "findById",
        "tags": [
          "CommonBucketController"
        ],
        "responses": {
          "200": {
            "description": "CommonBucket model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonBucketWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonBucket.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonBucketController.findById"
      },
      "delete": {
        "x-controller-name": "CommonBucketController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonBucketController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonBucket DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "CommonBucketController.deleteById"
      }
    },
    "/p/common_bucket": {
      "post": {
        "x-controller-name": "CommonBucketController",
        "x-operation-name": "create",
        "tags": [
          "CommonBucketController"
        ],
        "responses": {
          "200": {
            "description": "CommonBucket model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonBucket"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonBucket"
                }
              }
            }
          }
        },
        "operationId": "CommonBucketController.create"
      },
      "patch": {
        "x-controller-name": "CommonBucketController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonBucketController"
        ],
        "responses": {
          "200": {
            "description": "CommonBucket PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonBucket.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonBucket>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonBucketPartial"
              }
            }
          }
        },
        "operationId": "CommonBucketController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonBucketController",
        "x-operation-name": "find",
        "tags": [
          "CommonBucketController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonBucket model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonBucketWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonBucket.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonBucketController.find"
      }
    },
    "/p/common_bucketdetail/batch": {
      "patch": {
        "x-controller-name": "CommonBucketdetailController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonBucketdetailController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonBucketdetail PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonBucketdetailPartial"
                }
              }
            }
          }
        },
        "operationId": "CommonBucketdetailController.update_batch"
      }
    },
    "/p/common_bucketdetail/count": {
      "get": {
        "x-controller-name": "CommonBucketdetailController",
        "x-operation-name": "count",
        "tags": [
          "CommonBucketdetailController"
        ],
        "responses": {
          "200": {
            "description": "CommonBucketdetail model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonBucketdetail.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonBucketdetail>"
                }
              }
            }
          }
        ],
        "operationId": "CommonBucketdetailController.count"
      }
    },
    "/p/common_bucketdetail/{id}": {
      "put": {
        "x-controller-name": "CommonBucketdetailController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonBucketdetailController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonBucketdetail PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonBucketdetail"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonBucketdetailController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonBucketdetailController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonBucketdetailController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonBucketdetail PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonBucketdetailPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonBucketdetailController.updateById"
      },
      "get": {
        "x-controller-name": "CommonBucketdetailController",
        "x-operation-name": "findById",
        "tags": [
          "CommonBucketdetailController"
        ],
        "responses": {
          "200": {
            "description": "CommonBucketdetail model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonBucketdetailWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonBucketdetail.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonBucketdetailController.findById"
      },
      "delete": {
        "x-controller-name": "CommonBucketdetailController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonBucketdetailController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonBucketdetail DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CommonBucketdetailController.deleteById"
      }
    },
    "/p/common_bucketdetail": {
      "post": {
        "x-controller-name": "CommonBucketdetailController",
        "x-operation-name": "create",
        "tags": [
          "CommonBucketdetailController"
        ],
        "responses": {
          "200": {
            "description": "CommonBucketdetail model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonBucketdetail"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonBucketdetail"
                }
              }
            }
          }
        },
        "operationId": "CommonBucketdetailController.create"
      },
      "patch": {
        "x-controller-name": "CommonBucketdetailController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonBucketdetailController"
        ],
        "responses": {
          "200": {
            "description": "CommonBucketdetail PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonBucketdetail.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonBucketdetail>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonBucketdetailPartial"
              }
            }
          }
        },
        "operationId": "CommonBucketdetailController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonBucketdetailController",
        "x-operation-name": "find",
        "tags": [
          "CommonBucketdetailController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonBucketdetail model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonBucketdetailWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonBucketdetail.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonBucketdetailController.find"
      }
    },
    "/p/common_comment/batch": {
      "patch": {
        "x-controller-name": "CommonCommentController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonCommentController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonComment PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonCommentPartial"
                }
              }
            }
          }
        },
        "operationId": "CommonCommentController.update_batch"
      }
    },
    "/p/common_comment/count": {
      "get": {
        "x-controller-name": "CommonCommentController",
        "x-operation-name": "count",
        "tags": [
          "CommonCommentController"
        ],
        "responses": {
          "200": {
            "description": "CommonComment model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonComment.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonComment>"
                }
              }
            }
          }
        ],
        "operationId": "CommonCommentController.count"
      }
    },
    "/p/common_comment/{id}": {
      "put": {
        "x-controller-name": "CommonCommentController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonCommentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonComment PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonComment"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonCommentController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonCommentController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonCommentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonComment PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonCommentPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonCommentController.updateById"
      },
      "get": {
        "x-controller-name": "CommonCommentController",
        "x-operation-name": "findById",
        "tags": [
          "CommonCommentController"
        ],
        "responses": {
          "200": {
            "description": "CommonComment model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonCommentWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonComment.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonCommentController.findById"
      },
      "delete": {
        "x-controller-name": "CommonCommentController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonCommentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonComment DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CommonCommentController.deleteById"
      }
    },
    "/p/common_comment": {
      "post": {
        "x-controller-name": "CommonCommentController",
        "x-operation-name": "create",
        "tags": [
          "CommonCommentController"
        ],
        "responses": {
          "200": {
            "description": "CommonComment model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonComment"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonComment"
                }
              }
            }
          }
        },
        "operationId": "CommonCommentController.create"
      },
      "patch": {
        "x-controller-name": "CommonCommentController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonCommentController"
        ],
        "responses": {
          "200": {
            "description": "CommonComment PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonComment.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonComment>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonCommentPartial"
              }
            }
          }
        },
        "operationId": "CommonCommentController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonCommentController",
        "x-operation-name": "find",
        "tags": [
          "CommonCommentController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonComment model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonCommentWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonComment.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonCommentController.find"
      }
    },
    "/p/common_follower/batch": {
      "patch": {
        "x-controller-name": "CommonFollowerController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonFollowerController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonFollower PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonFollowerPartial"
                }
              }
            }
          }
        },
        "operationId": "CommonFollowerController.update_batch"
      }
    },
    "/p/common_follower/count": {
      "get": {
        "x-controller-name": "CommonFollowerController",
        "x-operation-name": "count",
        "tags": [
          "CommonFollowerController"
        ],
        "responses": {
          "200": {
            "description": "CommonFollower model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonFollower.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonFollower>"
                }
              }
            }
          }
        ],
        "operationId": "CommonFollowerController.count"
      }
    },
    "/p/common_follower/{id}": {
      "put": {
        "x-controller-name": "CommonFollowerController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonFollowerController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonFollower PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonFollower"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonFollowerController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonFollowerController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonFollowerController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonFollower PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonFollowerPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonFollowerController.updateById"
      },
      "get": {
        "x-controller-name": "CommonFollowerController",
        "x-operation-name": "findById",
        "tags": [
          "CommonFollowerController"
        ],
        "responses": {
          "200": {
            "description": "CommonFollower model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonFollowerWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonFollower.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonFollowerController.findById"
      },
      "delete": {
        "x-controller-name": "CommonFollowerController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonFollowerController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonFollower DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CommonFollowerController.deleteById"
      }
    },
    "/p/common_follower": {
      "post": {
        "x-controller-name": "CommonFollowerController",
        "x-operation-name": "create",
        "tags": [
          "CommonFollowerController"
        ],
        "responses": {
          "200": {
            "description": "CommonFollower model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonFollower"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonFollower"
                }
              }
            }
          }
        },
        "operationId": "CommonFollowerController.create"
      },
      "patch": {
        "x-controller-name": "CommonFollowerController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonFollowerController"
        ],
        "responses": {
          "200": {
            "description": "CommonFollower PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonFollower.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonFollower>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonFollowerPartial"
              }
            }
          }
        },
        "operationId": "CommonFollowerController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonFollowerController",
        "x-operation-name": "find",
        "tags": [
          "CommonFollowerController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonFollower model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonFollowerWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonFollower.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonFollowerController.find"
      }
    },
    "/p/common_notification/batch": {
      "patch": {
        "x-controller-name": "CommonNotificationController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonNotificationController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonNotification PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonNotificationPartial"
                }
              }
            }
          }
        },
        "operationId": "CommonNotificationController.update_batch"
      }
    },
    "/p/common_notification/count": {
      "get": {
        "x-controller-name": "CommonNotificationController",
        "x-operation-name": "count",
        "tags": [
          "CommonNotificationController"
        ],
        "responses": {
          "200": {
            "description": "CommonNotification model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonNotification.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonNotification>"
                }
              }
            }
          }
        ],
        "operationId": "CommonNotificationController.count"
      }
    },
    "/p/common_notification/{id}": {
      "put": {
        "x-controller-name": "CommonNotificationController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonNotificationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonNotification PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonNotification"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonNotificationController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonNotificationController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonNotificationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonNotification PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonNotificationPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonNotificationController.updateById"
      },
      "get": {
        "x-controller-name": "CommonNotificationController",
        "x-operation-name": "findById",
        "tags": [
          "CommonNotificationController"
        ],
        "responses": {
          "200": {
            "description": "CommonNotification model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonNotificationWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonNotification.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonNotificationController.findById"
      },
      "delete": {
        "x-controller-name": "CommonNotificationController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonNotificationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonNotification DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CommonNotificationController.deleteById"
      }
    },
    "/p/common_notification": {
      "post": {
        "x-controller-name": "CommonNotificationController",
        "x-operation-name": "create",
        "tags": [
          "CommonNotificationController"
        ],
        "responses": {
          "200": {
            "description": "CommonNotification model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonNotification"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonNotification"
                }
              }
            }
          }
        },
        "operationId": "CommonNotificationController.create"
      },
      "patch": {
        "x-controller-name": "CommonNotificationController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonNotificationController"
        ],
        "responses": {
          "200": {
            "description": "CommonNotification PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonNotification.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonNotification>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonNotificationPartial"
              }
            }
          }
        },
        "operationId": "CommonNotificationController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonNotificationController",
        "x-operation-name": "find",
        "tags": [
          "CommonNotificationController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonNotification model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonNotificationWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonNotification.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonNotificationController.find"
      }
    },
    "/p/common_parameter/batch": {
      "patch": {
        "x-controller-name": "CommonParameterController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonParameterController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonParameter PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonParameterPartial"
                }
              }
            }
          }
        },
        "operationId": "CommonParameterController.update_batch"
      }
    },
    "/p/common_parameter/count": {
      "get": {
        "x-controller-name": "CommonParameterController",
        "x-operation-name": "count",
        "tags": [
          "CommonParameterController"
        ],
        "responses": {
          "200": {
            "description": "CommonParameter model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonParameter.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonParameter>"
                }
              }
            }
          }
        ],
        "operationId": "CommonParameterController.count"
      }
    },
    "/p/common_parameter/{id}": {
      "put": {
        "x-controller-name": "CommonParameterController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonParameterController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonParameter PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonParameter"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonParameterController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonParameterController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonParameterController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonParameter PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonParameterPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonParameterController.updateById"
      },
      "get": {
        "x-controller-name": "CommonParameterController",
        "x-operation-name": "findById",
        "tags": [
          "CommonParameterController"
        ],
        "responses": {
          "200": {
            "description": "CommonParameter model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonParameterWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonParameter.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonParameterController.findById"
      },
      "delete": {
        "x-controller-name": "CommonParameterController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonParameterController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonParameter DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "CommonParameterController.deleteById"
      }
    },
    "/p/common_parameter": {
      "post": {
        "x-controller-name": "CommonParameterController",
        "x-operation-name": "create",
        "tags": [
          "CommonParameterController"
        ],
        "responses": {
          "200": {
            "description": "CommonParameter model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonParameter"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonParameter"
                }
              }
            }
          }
        },
        "operationId": "CommonParameterController.create"
      },
      "patch": {
        "x-controller-name": "CommonParameterController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonParameterController"
        ],
        "responses": {
          "200": {
            "description": "CommonParameter PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonParameter.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonParameter>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonParameterPartial"
              }
            }
          }
        },
        "operationId": "CommonParameterController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonParameterController",
        "x-operation-name": "find",
        "tags": [
          "CommonParameterController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonParameter model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonParameterWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonParameter.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonParameterController.find"
      }
    },
    "/p/common_preference/batch": {
      "patch": {
        "x-controller-name": "CommonPreferenceController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonPreferenceController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonPreference PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonPreferencePartial"
                }
              }
            }
          }
        },
        "operationId": "CommonPreferenceController.update_batch"
      }
    },
    "/p/common_preference/count": {
      "get": {
        "x-controller-name": "CommonPreferenceController",
        "x-operation-name": "count",
        "tags": [
          "CommonPreferenceController"
        ],
        "responses": {
          "200": {
            "description": "CommonPreference model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonPreference.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonPreference>"
                }
              }
            }
          }
        ],
        "operationId": "CommonPreferenceController.count"
      }
    },
    "/p/common_preference/upsert": {
      "post": {
        "x-controller-name": "CommonPreferenceController",
        "x-operation-name": "upsert",
        "tags": [
          "CommonPreferenceController"
        ],
        "responses": {
          "200": {
            "description": "Upsert CommonPreference by userId + property",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonPreference"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "property",
                  "value",
                  "userId"
                ],
                "properties": {
                  "property": {
                    "type": "string"
                  },
                  "value": {},
                  "userId": {
                    "type": "number"
                  }
                }
              }
            }
          }
        },
        "operationId": "CommonPreferenceController.upsert"
      }
    },
    "/p/common_preference/{id}": {
      "put": {
        "x-controller-name": "CommonPreferenceController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonPreferenceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonPreference PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonPreference"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonPreferenceController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonPreferenceController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonPreferenceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonPreference PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonPreferencePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonPreferenceController.updateById"
      },
      "get": {
        "x-controller-name": "CommonPreferenceController",
        "x-operation-name": "findById",
        "tags": [
          "CommonPreferenceController"
        ],
        "responses": {
          "200": {
            "description": "CommonPreference model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonPreferenceWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonPreference.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonPreferenceController.findById"
      },
      "delete": {
        "x-controller-name": "CommonPreferenceController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonPreferenceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonPreference DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CommonPreferenceController.deleteById"
      }
    },
    "/p/common_preference": {
      "post": {
        "x-controller-name": "CommonPreferenceController",
        "x-operation-name": "create",
        "tags": [
          "CommonPreferenceController"
        ],
        "responses": {
          "200": {
            "description": "CommonPreference model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonPreference"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonPreference"
                }
              }
            }
          }
        },
        "operationId": "CommonPreferenceController.create"
      },
      "patch": {
        "x-controller-name": "CommonPreferenceController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonPreferenceController"
        ],
        "responses": {
          "200": {
            "description": "CommonPreference PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonPreference.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonPreference>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonPreferencePartial"
              }
            }
          }
        },
        "operationId": "CommonPreferenceController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonPreferenceController",
        "x-operation-name": "find",
        "tags": [
          "CommonPreferenceController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonPreference model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonPreferenceWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonPreference.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonPreferenceController.find"
      }
    },
    "/p/common_scenario/batch": {
      "patch": {
        "x-controller-name": "CommonScenarioController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonScenarioController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonScenario PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonScenarioPartial"
                }
              }
            }
          }
        },
        "operationId": "CommonScenarioController.update_batch"
      }
    },
    "/p/common_scenario/count": {
      "get": {
        "x-controller-name": "CommonScenarioController",
        "x-operation-name": "count",
        "tags": [
          "CommonScenarioController"
        ],
        "responses": {
          "200": {
            "description": "CommonScenario model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonScenario.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonScenario>"
                }
              }
            }
          }
        ],
        "operationId": "CommonScenarioController.count"
      }
    },
    "/p/common_scenario/{id}": {
      "put": {
        "x-controller-name": "CommonScenarioController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonScenarioController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonScenario PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonScenario"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonScenarioController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonScenarioController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonScenarioController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonScenario PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonScenarioPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonScenarioController.updateById"
      },
      "get": {
        "x-controller-name": "CommonScenarioController",
        "x-operation-name": "findById",
        "tags": [
          "CommonScenarioController"
        ],
        "responses": {
          "200": {
            "description": "CommonScenario model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonScenarioWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonScenario.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonScenarioController.findById"
      },
      "delete": {
        "x-controller-name": "CommonScenarioController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonScenarioController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonScenario DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "CommonScenarioController.deleteById"
      }
    },
    "/p/common_scenario": {
      "post": {
        "x-controller-name": "CommonScenarioController",
        "x-operation-name": "create",
        "tags": [
          "CommonScenarioController"
        ],
        "responses": {
          "200": {
            "description": "CommonScenario model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonScenario"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonScenario"
                }
              }
            }
          }
        },
        "operationId": "CommonScenarioController.create"
      },
      "patch": {
        "x-controller-name": "CommonScenarioController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonScenarioController"
        ],
        "responses": {
          "200": {
            "description": "CommonScenario PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonScenario.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonScenario>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonScenarioPartial"
              }
            }
          }
        },
        "operationId": "CommonScenarioController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonScenarioController",
        "x-operation-name": "find",
        "tags": [
          "CommonScenarioController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonScenario model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonScenarioWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonScenario.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonScenarioController.find"
      }
    },
    "/p/common_user/batch": {
      "patch": {
        "x-controller-name": "CommonUserController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonUserController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUser PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonUserPartial"
                }
              }
            }
          }
        },
        "operationId": "CommonUserController.update_batch"
      }
    },
    "/p/common_user/count": {
      "get": {
        "x-controller-name": "CommonUserController",
        "x-operation-name": "count",
        "tags": [
          "CommonUserController"
        ],
        "responses": {
          "200": {
            "description": "CommonUser model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonUser.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonUser>"
                }
              }
            }
          }
        ],
        "operationId": "CommonUserController.count"
      }
    },
    "/p/common_user/{id}": {
      "put": {
        "x-controller-name": "CommonUserController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonUserController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUser PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonUser"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonUserController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonUserController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonUserController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUser PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonUserPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonUserController.updateById"
      },
      "get": {
        "x-controller-name": "CommonUserController",
        "x-operation-name": "findById",
        "tags": [
          "CommonUserController"
        ],
        "responses": {
          "200": {
            "description": "CommonUser model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUserWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUser.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonUserController.findById"
      },
      "delete": {
        "x-controller-name": "CommonUserController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonUserController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUser DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CommonUserController.deleteById"
      }
    },
    "/p/common_user": {
      "post": {
        "x-controller-name": "CommonUserController",
        "x-operation-name": "create",
        "tags": [
          "CommonUserController"
        ],
        "responses": {
          "200": {
            "description": "CommonUser model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUser"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonUser"
                }
              }
            }
          }
        },
        "operationId": "CommonUserController.create"
      },
      "patch": {
        "x-controller-name": "CommonUserController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonUserController"
        ],
        "responses": {
          "200": {
            "description": "CommonUser PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonUser.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonUser>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonUserPartial"
              }
            }
          }
        },
        "operationId": "CommonUserController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonUserController",
        "x-operation-name": "find",
        "tags": [
          "CommonUserController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonUser model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonUserWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUser.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonUserController.find"
      }
    },
    "/p/common_user_groups/batch": {
      "patch": {
        "x-controller-name": "CommonUserGroupsController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonUserGroupsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUserGroups PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonUserGroupsPartial"
                }
              }
            }
          }
        },
        "operationId": "CommonUserGroupsController.update_batch"
      }
    },
    "/p/common_user_groups/count": {
      "get": {
        "x-controller-name": "CommonUserGroupsController",
        "x-operation-name": "count",
        "tags": [
          "CommonUserGroupsController"
        ],
        "responses": {
          "200": {
            "description": "CommonUserGroups model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonUserGroups.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonUserGroups>"
                }
              }
            }
          }
        ],
        "operationId": "CommonUserGroupsController.count"
      }
    },
    "/p/common_user_groups/{id}": {
      "put": {
        "x-controller-name": "CommonUserGroupsController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonUserGroupsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUserGroups PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonUserGroups"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonUserGroupsController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonUserGroupsController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonUserGroupsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUserGroups PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonUserGroupsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonUserGroupsController.updateById"
      },
      "get": {
        "x-controller-name": "CommonUserGroupsController",
        "x-operation-name": "findById",
        "tags": [
          "CommonUserGroupsController"
        ],
        "responses": {
          "200": {
            "description": "CommonUserGroups model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUserGroupsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUserGroups.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonUserGroupsController.findById"
      },
      "delete": {
        "x-controller-name": "CommonUserGroupsController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonUserGroupsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUserGroups DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CommonUserGroupsController.deleteById"
      }
    },
    "/p/common_user_groups": {
      "post": {
        "x-controller-name": "CommonUserGroupsController",
        "x-operation-name": "create",
        "tags": [
          "CommonUserGroupsController"
        ],
        "responses": {
          "200": {
            "description": "CommonUserGroups model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUserGroups"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonUserGroups"
                }
              }
            }
          }
        },
        "operationId": "CommonUserGroupsController.create"
      },
      "patch": {
        "x-controller-name": "CommonUserGroupsController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonUserGroupsController"
        ],
        "responses": {
          "200": {
            "description": "CommonUserGroups PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonUserGroups.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonUserGroups>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonUserGroupsPartial"
              }
            }
          }
        },
        "operationId": "CommonUserGroupsController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonUserGroupsController",
        "x-operation-name": "find",
        "tags": [
          "CommonUserGroupsController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonUserGroups model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonUserGroupsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUserGroups.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonUserGroupsController.find"
      }
    },
    "/p/common_user_user_permissions/batch": {
      "patch": {
        "x-controller-name": "CommonUserUserPermissionsController",
        "x-operation-name": "update_batch",
        "tags": [
          "CommonUserUserPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUserUserPermissions PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CommonUserUserPermissionsPartial"
                }
              }
            }
          }
        },
        "operationId": "CommonUserUserPermissionsController.update_batch"
      }
    },
    "/p/common_user_user_permissions/count": {
      "get": {
        "x-controller-name": "CommonUserUserPermissionsController",
        "x-operation-name": "count",
        "tags": [
          "CommonUserUserPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "CommonUserUserPermissions model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonUserUserPermissions.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonUserUserPermissions>"
                }
              }
            }
          }
        ],
        "operationId": "CommonUserUserPermissionsController.count"
      }
    },
    "/p/common_user_user_permissions/{id}": {
      "put": {
        "x-controller-name": "CommonUserUserPermissionsController",
        "x-operation-name": "replaceById",
        "tags": [
          "CommonUserUserPermissionsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUserUserPermissions PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonUserUserPermissions"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonUserUserPermissionsController.replaceById"
      },
      "patch": {
        "x-controller-name": "CommonUserUserPermissionsController",
        "x-operation-name": "updateById",
        "tags": [
          "CommonUserUserPermissionsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUserUserPermissions PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonUserUserPermissionsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CommonUserUserPermissionsController.updateById"
      },
      "get": {
        "x-controller-name": "CommonUserUserPermissionsController",
        "x-operation-name": "findById",
        "tags": [
          "CommonUserUserPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "CommonUserUserPermissions model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUserUserPermissionsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUserUserPermissions.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonUserUserPermissionsController.findById"
      },
      "delete": {
        "x-controller-name": "CommonUserUserPermissionsController",
        "x-operation-name": "deleteById",
        "tags": [
          "CommonUserUserPermissionsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CommonUserUserPermissions DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CommonUserUserPermissionsController.deleteById"
      }
    },
    "/p/common_user_user_permissions": {
      "post": {
        "x-controller-name": "CommonUserUserPermissionsController",
        "x-operation-name": "create",
        "tags": [
          "CommonUserUserPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "CommonUserUserPermissions model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUserUserPermissions"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCommonUserUserPermissions"
                }
              }
            }
          }
        },
        "operationId": "CommonUserUserPermissionsController.create"
      },
      "patch": {
        "x-controller-name": "CommonUserUserPermissionsController",
        "x-operation-name": "updateAll",
        "tags": [
          "CommonUserUserPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "CommonUserUserPermissions PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CommonUserUserPermissions.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CommonUserUserPermissions>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CommonUserUserPermissionsPartial"
              }
            }
          }
        },
        "operationId": "CommonUserUserPermissionsController.updateAll"
      },
      "get": {
        "x-controller-name": "CommonUserUserPermissionsController",
        "x-operation-name": "find",
        "tags": [
          "CommonUserUserPermissionsController"
        ],
        "responses": {
          "200": {
            "description": "Array of CommonUserUserPermissions model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CommonUserUserPermissionsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CommonUserUserPermissions.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CommonUserUserPermissionsController.find"
      }
    },
    "/p/cost_other/batch": {
      "patch": {
        "x-controller-name": "CostOtherController",
        "x-operation-name": "update_batch",
        "tags": [
          "CostOtherController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostOther PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CostOtherPartial"
                }
              }
            }
          }
        },
        "operationId": "CostOtherController.update_batch"
      }
    },
    "/p/cost_other/count": {
      "get": {
        "x-controller-name": "CostOtherController",
        "x-operation-name": "count",
        "tags": [
          "CostOtherController"
        ],
        "responses": {
          "200": {
            "description": "CostOther model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CostOther.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CostOther>"
                }
              }
            }
          }
        ],
        "operationId": "CostOtherController.count"
      }
    },
    "/p/cost_other/{id}": {
      "put": {
        "x-controller-name": "CostOtherController",
        "x-operation-name": "replaceById",
        "tags": [
          "CostOtherController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostOther PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CostOther"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CostOtherController.replaceById"
      },
      "patch": {
        "x-controller-name": "CostOtherController",
        "x-operation-name": "updateById",
        "tags": [
          "CostOtherController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostOther PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CostOtherPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CostOtherController.updateById"
      },
      "get": {
        "x-controller-name": "CostOtherController",
        "x-operation-name": "findById",
        "tags": [
          "CostOtherController"
        ],
        "responses": {
          "200": {
            "description": "CostOther model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostOtherWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostOther.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CostOtherController.findById"
      },
      "delete": {
        "x-controller-name": "CostOtherController",
        "x-operation-name": "deleteById",
        "tags": [
          "CostOtherController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostOther DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CostOtherController.deleteById"
      }
    },
    "/p/cost_other": {
      "post": {
        "x-controller-name": "CostOtherController",
        "x-operation-name": "create",
        "tags": [
          "CostOtherController"
        ],
        "responses": {
          "200": {
            "description": "CostOther model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostOther"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCostOther"
                }
              }
            }
          }
        },
        "operationId": "CostOtherController.create"
      },
      "patch": {
        "x-controller-name": "CostOtherController",
        "x-operation-name": "updateAll",
        "tags": [
          "CostOtherController"
        ],
        "responses": {
          "200": {
            "description": "CostOther PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CostOther.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CostOther>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CostOtherPartial"
              }
            }
          }
        },
        "operationId": "CostOtherController.updateAll"
      },
      "get": {
        "x-controller-name": "CostOtherController",
        "x-operation-name": "find",
        "tags": [
          "CostOtherController"
        ],
        "responses": {
          "200": {
            "description": "Array of CostOther model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CostOtherWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostOther.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CostOtherController.find"
      }
    },
    "/p/cost_patch/batch": {
      "patch": {
        "x-controller-name": "CostPatchController",
        "x-operation-name": "update_batch",
        "tags": [
          "CostPatchController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostPatch PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CostPatchPartial"
                }
              }
            }
          }
        },
        "operationId": "CostPatchController.update_batch"
      }
    },
    "/p/cost_patch/count": {
      "get": {
        "x-controller-name": "CostPatchController",
        "x-operation-name": "count",
        "tags": [
          "CostPatchController"
        ],
        "responses": {
          "200": {
            "description": "CostPatch model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CostPatch.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CostPatch>"
                }
              }
            }
          }
        ],
        "operationId": "CostPatchController.count"
      }
    },
    "/p/cost_patch/{id}": {
      "put": {
        "x-controller-name": "CostPatchController",
        "x-operation-name": "replaceById",
        "tags": [
          "CostPatchController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostPatch PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CostPatch"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CostPatchController.replaceById"
      },
      "patch": {
        "x-controller-name": "CostPatchController",
        "x-operation-name": "updateById",
        "tags": [
          "CostPatchController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostPatch PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CostPatchPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CostPatchController.updateById"
      },
      "get": {
        "x-controller-name": "CostPatchController",
        "x-operation-name": "findById",
        "tags": [
          "CostPatchController"
        ],
        "responses": {
          "200": {
            "description": "CostPatch model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostPatchWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostPatch.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CostPatchController.findById"
      },
      "delete": {
        "x-controller-name": "CostPatchController",
        "x-operation-name": "deleteById",
        "tags": [
          "CostPatchController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostPatch DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CostPatchController.deleteById"
      }
    },
    "/p/cost_patch": {
      "post": {
        "x-controller-name": "CostPatchController",
        "x-operation-name": "create",
        "tags": [
          "CostPatchController"
        ],
        "responses": {
          "200": {
            "description": "CostPatch model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostPatch"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCostPatch"
                }
              }
            }
          }
        },
        "operationId": "CostPatchController.create"
      },
      "patch": {
        "x-controller-name": "CostPatchController",
        "x-operation-name": "updateAll",
        "tags": [
          "CostPatchController"
        ],
        "responses": {
          "200": {
            "description": "CostPatch PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CostPatch.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CostPatch>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CostPatchPartial"
              }
            }
          }
        },
        "operationId": "CostPatchController.updateAll"
      },
      "get": {
        "x-controller-name": "CostPatchController",
        "x-operation-name": "find",
        "tags": [
          "CostPatchController"
        ],
        "responses": {
          "200": {
            "description": "Array of CostPatch model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CostPatchWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostPatch.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CostPatchController.find"
      }
    },
    "/p/cost_record/batch": {
      "patch": {
        "x-controller-name": "CostRecordController",
        "x-operation-name": "update_batch",
        "tags": [
          "CostRecordController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostRecord PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CostRecordPartial"
                }
              }
            }
          }
        },
        "operationId": "CostRecordController.update_batch"
      }
    },
    "/p/cost_record/count": {
      "get": {
        "x-controller-name": "CostRecordController",
        "x-operation-name": "count",
        "tags": [
          "CostRecordController"
        ],
        "responses": {
          "200": {
            "description": "CostOtheCostRecordr model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CostRecord.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CostRecord>"
                }
              }
            }
          }
        ],
        "operationId": "CostRecordController.count"
      }
    },
    "/p/cost_record/{id}": {
      "put": {
        "x-controller-name": "CostRecordController",
        "x-operation-name": "replaceById",
        "tags": [
          "CostRecordController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostRecord PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CostRecord"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CostRecordController.replaceById"
      },
      "patch": {
        "x-controller-name": "CostRecordController",
        "x-operation-name": "updateById",
        "tags": [
          "CostRecordController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostRecord PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CostRecordPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CostRecordController.updateById"
      },
      "get": {
        "x-controller-name": "CostRecordController",
        "x-operation-name": "findById",
        "tags": [
          "CostRecordController"
        ],
        "responses": {
          "200": {
            "description": "CostRecord model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostRecordWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostRecord.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CostRecordController.findById"
      },
      "delete": {
        "x-controller-name": "CostRecordController",
        "x-operation-name": "deleteById",
        "tags": [
          "CostRecordController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "CostRecord DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "CostRecordController.deleteById"
      }
    },
    "/p/cost_record": {
      "post": {
        "x-controller-name": "CostRecordController",
        "x-operation-name": "create",
        "tags": [
          "CostRecordController"
        ],
        "responses": {
          "200": {
            "description": "CostRecord model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostRecord"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCostRecord"
                }
              }
            }
          }
        },
        "operationId": "CostRecordController.create"
      },
      "patch": {
        "x-controller-name": "CostRecordController",
        "x-operation-name": "updateAll",
        "tags": [
          "CostRecordController"
        ],
        "responses": {
          "200": {
            "description": "CostRecord PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "CostRecord.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<CostRecord>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CostRecordPartial"
              }
            }
          }
        },
        "operationId": "CostRecordController.updateAll"
      },
      "get": {
        "x-controller-name": "CostRecordController",
        "x-operation-name": "find",
        "tags": [
          "CostRecordController"
        ],
        "responses": {
          "200": {
            "description": "Array of CostRecord model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CostRecordWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CostRecord.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CostRecordController.find"
      }
    },
    "/p/customer/batch": {
      "patch": {
        "x-controller-name": "CustomerController",
        "x-operation-name": "update_batch",
        "tags": [
          "CustomerController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Customer PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/CustomerPartial"
                }
              }
            }
          }
        },
        "operationId": "CustomerController.update_batch"
      }
    },
    "/p/customer/count": {
      "get": {
        "x-controller-name": "CustomerController",
        "x-operation-name": "count",
        "tags": [
          "CustomerController"
        ],
        "responses": {
          "200": {
            "description": "Customer model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Customer.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Customer>"
                }
              }
            }
          }
        ],
        "operationId": "CustomerController.count"
      }
    },
    "/p/customer/{id}": {
      "put": {
        "x-controller-name": "CustomerController",
        "x-operation-name": "replaceById",
        "tags": [
          "CustomerController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Customer PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Customer"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CustomerController.replaceById"
      },
      "patch": {
        "x-controller-name": "CustomerController",
        "x-operation-name": "updateById",
        "tags": [
          "CustomerController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Customer PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CustomerPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "CustomerController.updateById"
      },
      "get": {
        "x-controller-name": "CustomerController",
        "x-operation-name": "findById",
        "tags": [
          "CustomerController"
        ],
        "responses": {
          "200": {
            "description": "Customer model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/CustomerWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Customer.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CustomerController.findById"
      },
      "delete": {
        "x-controller-name": "CustomerController",
        "x-operation-name": "deleteById",
        "tags": [
          "CustomerController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Customer DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "CustomerController.deleteById"
      }
    },
    "/p/customer": {
      "post": {
        "x-controller-name": "CustomerController",
        "x-operation-name": "create",
        "tags": [
          "CustomerController"
        ],
        "responses": {
          "200": {
            "description": "Customer model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Customer"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewCustomer"
                }
              }
            }
          }
        },
        "operationId": "CustomerController.create"
      },
      "patch": {
        "x-controller-name": "CustomerController",
        "x-operation-name": "updateAll",
        "tags": [
          "CustomerController"
        ],
        "responses": {
          "200": {
            "description": "Customer PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Customer.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Customer>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CustomerPartial"
              }
            }
          }
        },
        "operationId": "CustomerController.updateAll"
      },
      "get": {
        "x-controller-name": "CustomerController",
        "x-operation-name": "find",
        "tags": [
          "CustomerController"
        ],
        "responses": {
          "200": {
            "description": "Array of Customer model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/CustomerWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Customer.Filter"
                }
              }
            }
          }
        ],
        "operationId": "CustomerController.find"
      }
    },
    "/p/demand/batch": {
      "patch": {
        "x-controller-name": "DemandController",
        "x-operation-name": "update_batch",
        "tags": [
          "DemandController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Demand PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/DemandPartial"
                }
              }
            }
          }
        },
        "operationId": "DemandController.update_batch"
      }
    },
    "/p/demand/count": {
      "get": {
        "x-controller-name": "DemandController",
        "x-operation-name": "count",
        "tags": [
          "DemandController"
        ],
        "responses": {
          "200": {
            "description": "Demand model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Demand.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Demand>"
                }
              }
            }
          }
        ],
        "operationId": "DemandController.count"
      }
    },
    "/p/demand/{id}": {
      "put": {
        "x-controller-name": "DemandController",
        "x-operation-name": "replaceById",
        "tags": [
          "DemandController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Demand PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Demand"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DemandController.replaceById"
      },
      "patch": {
        "x-controller-name": "DemandController",
        "x-operation-name": "updateById",
        "tags": [
          "DemandController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Demand PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DemandPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DemandController.updateById"
      },
      "get": {
        "x-controller-name": "DemandController",
        "x-operation-name": "findById",
        "tags": [
          "DemandController"
        ],
        "responses": {
          "200": {
            "description": "Demand model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DemandWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Demand.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DemandController.findById"
      },
      "delete": {
        "x-controller-name": "DemandController",
        "x-operation-name": "deleteById",
        "tags": [
          "DemandController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Demand DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "DemandController.deleteById"
      }
    },
    "/p/demand": {
      "post": {
        "x-controller-name": "DemandController",
        "x-operation-name": "create",
        "tags": [
          "DemandController"
        ],
        "responses": {
          "200": {
            "description": "Demand model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Demand"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewDemand"
                }
              }
            }
          }
        },
        "operationId": "DemandController.create"
      },
      "patch": {
        "x-controller-name": "DemandController",
        "x-operation-name": "updateAll",
        "tags": [
          "DemandController"
        ],
        "responses": {
          "200": {
            "description": "Demand PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Demand.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Demand>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DemandPartial"
              }
            }
          }
        },
        "operationId": "DemandController.updateAll"
      },
      "get": {
        "x-controller-name": "DemandController",
        "x-operation-name": "find",
        "tags": [
          "DemandController"
        ],
        "responses": {
          "200": {
            "description": "Array of Demand model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DemandWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Demand.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DemandController.find"
      }
    },
    "/p/demand_emergency/batch": {
      "patch": {
        "x-controller-name": "DemandEmergencyController",
        "x-operation-name": "update_batch",
        "tags": [
          "DemandEmergencyController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DemandEmergency PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/DemandEmergencyPartial"
                }
              }
            }
          }
        },
        "operationId": "DemandEmergencyController.update_batch"
      }
    },
    "/p/demand_emergency/count": {
      "get": {
        "x-controller-name": "DemandEmergencyController",
        "x-operation-name": "count",
        "tags": [
          "DemandEmergencyController"
        ],
        "responses": {
          "200": {
            "description": "DemandEmergency model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "DemandEmergency.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<DemandEmergency>"
                }
              }
            }
          }
        ],
        "operationId": "DemandEmergencyController.count"
      }
    },
    "/p/demand_emergency/{id}": {
      "put": {
        "x-controller-name": "DemandEmergencyController",
        "x-operation-name": "replaceById",
        "tags": [
          "DemandEmergencyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DemandEmergency PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DemandEmergency"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DemandEmergencyController.replaceById"
      },
      "patch": {
        "x-controller-name": "DemandEmergencyController",
        "x-operation-name": "updateById",
        "tags": [
          "DemandEmergencyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DemandEmergency PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DemandEmergencyPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DemandEmergencyController.updateById"
      },
      "get": {
        "x-controller-name": "DemandEmergencyController",
        "x-operation-name": "findById",
        "tags": [
          "DemandEmergencyController"
        ],
        "responses": {
          "200": {
            "description": "DemandEmergency model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DemandEmergencyWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DemandEmergency.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DemandEmergencyController.findById"
      },
      "delete": {
        "x-controller-name": "DemandEmergencyController",
        "x-operation-name": "deleteById",
        "tags": [
          "DemandEmergencyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DemandEmergency DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "DemandEmergencyController.deleteById"
      }
    },
    "/p/demand_emergency": {
      "post": {
        "x-controller-name": "DemandEmergencyController",
        "x-operation-name": "create",
        "tags": [
          "DemandEmergencyController"
        ],
        "responses": {
          "200": {
            "description": "DemandEmergency model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DemandEmergency"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewDemandEmergency"
                }
              }
            }
          }
        },
        "operationId": "DemandEmergencyController.create"
      },
      "patch": {
        "x-controller-name": "DemandEmergencyController",
        "x-operation-name": "updateAll",
        "tags": [
          "DemandEmergencyController"
        ],
        "responses": {
          "200": {
            "description": "DemandEmergency PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "DemandEmergency.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<DemandEmergency>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DemandEmergencyPartial"
              }
            }
          }
        },
        "operationId": "DemandEmergencyController.updateAll"
      },
      "get": {
        "x-controller-name": "DemandEmergencyController",
        "x-operation-name": "find",
        "tags": [
          "DemandEmergencyController"
        ],
        "responses": {
          "200": {
            "description": "Array of DemandEmergency model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DemandEmergencyWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DemandEmergency.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DemandEmergencyController.find"
      }
    },
    "/p/demand_single": {
      "post": {
        "x-controller-name": "DemandController",
        "x-operation-name": "create_single",
        "tags": [
          "DemandController"
        ],
        "responses": {
          "200": {
            "description": "Demand model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Demand"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewDemand"
                }
              }
            }
          }
        },
        "operationId": "DemandController.create_single"
      }
    },
    "/p/demands/{id}/customer": {
      "get": {
        "x-controller-name": "DemandCustomerController",
        "x-operation-name": "getCustomer",
        "tags": [
          "DemandCustomerController"
        ],
        "responses": {
          "200": {
            "description": "Customer belonging to Demand",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Customer"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "DemandCustomerController.getCustomer"
      }
    },
    "/p/demands/{id}/item": {
      "get": {
        "x-controller-name": "DemandItemController",
        "x-operation-name": "getItem",
        "tags": [
          "DemandItemController"
        ],
        "responses": {
          "200": {
            "description": "Item belonging to Demand",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Item"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "DemandItemController.getItem"
      }
    },
    "/p/demands/{id}/location": {
      "get": {
        "x-controller-name": "DemandLocationController",
        "x-operation-name": "getLocation",
        "tags": [
          "DemandLocationController"
        ],
        "responses": {
          "200": {
            "description": "Location belonging to Demand",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Location"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "DemandLocationController.getLocation"
      }
    },
    "/p/demands/{id}/operation": {
      "get": {
        "x-controller-name": "DemandOperationController",
        "x-operation-name": "getOperation",
        "tags": [
          "DemandOperationController"
        ],
        "responses": {
          "200": {
            "description": "Operation belonging to Demand",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Operation"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "DemandOperationController.getOperation"
      }
    },
    "/p/demands/{id}/operationplan": {
      "get": {
        "x-controller-name": "DemandOperationplanController",
        "x-operation-name": "getOperationplan",
        "tags": [
          "DemandOperationplanController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan belonging to Demand",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Operationplan"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "DemandOperationplanController.getOperationplan"
      }
    },
    "/p/demands/{id}/supplier": {
      "get": {
        "x-controller-name": "DemandSupplierController",
        "x-operation-name": "getSupplier",
        "tags": [
          "DemandSupplierController"
        ],
        "responses": {
          "200": {
            "description": "Supplier belonging to Demand",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Supplier"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "DemandSupplierController.getSupplier"
      }
    },
    "/p/department/count": {
      "get": {
        "x-controller-name": "DepartmentController",
        "x-operation-name": "count",
        "tags": [
          "DepartmentController"
        ],
        "responses": {
          "200": {
            "description": "Department model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Department.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Department>"
                }
              }
            }
          }
        ],
        "operationId": "DepartmentController.count"
      }
    },
    "/p/department/{id}": {
      "put": {
        "x-controller-name": "DepartmentController",
        "x-operation-name": "replaceById",
        "tags": [
          "DepartmentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Department PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Department"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DepartmentController.replaceById"
      },
      "patch": {
        "x-controller-name": "DepartmentController",
        "x-operation-name": "updateById",
        "tags": [
          "DepartmentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Department PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DepartmentPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DepartmentController.updateById"
      },
      "get": {
        "x-controller-name": "DepartmentController",
        "x-operation-name": "findById",
        "tags": [
          "DepartmentController"
        ],
        "responses": {
          "200": {
            "description": "Department model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DepartmentWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Department.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DepartmentController.findById"
      },
      "delete": {
        "x-controller-name": "DepartmentController",
        "x-operation-name": "deleteById",
        "tags": [
          "DepartmentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Department DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "DepartmentController.deleteById"
      }
    },
    "/p/department": {
      "post": {
        "x-controller-name": "DepartmentController",
        "x-operation-name": "create",
        "tags": [
          "DepartmentController"
        ],
        "responses": {
          "200": {
            "description": "Department model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Department"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewDepartment"
              }
            }
          }
        },
        "operationId": "DepartmentController.create"
      },
      "patch": {
        "x-controller-name": "DepartmentController",
        "x-operation-name": "updateAll",
        "tags": [
          "DepartmentController"
        ],
        "responses": {
          "200": {
            "description": "Department PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Department.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Department>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DepartmentPartial"
              }
            }
          }
        },
        "operationId": "DepartmentController.updateAll"
      },
      "get": {
        "x-controller-name": "DepartmentController",
        "x-operation-name": "find",
        "tags": [
          "DepartmentController"
        ],
        "responses": {
          "200": {
            "description": "Array of Department model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DepartmentWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Department.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "DepartmentController.find"
      }
    },
    "/p/django_admin_log/batch": {
      "patch": {
        "x-controller-name": "DjangoAdminLogController",
        "x-operation-name": "update_batch",
        "tags": [
          "DjangoAdminLogController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoAdminLog PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/DjangoAdminLogPartial"
                }
              }
            }
          }
        },
        "operationId": "DjangoAdminLogController.update_batch"
      }
    },
    "/p/django_admin_log/count": {
      "get": {
        "x-controller-name": "DjangoAdminLogController",
        "x-operation-name": "count",
        "tags": [
          "DjangoAdminLogController"
        ],
        "responses": {
          "200": {
            "description": "DjangoAdminLog model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "DjangoAdminLog.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<DjangoAdminLog>"
                }
              }
            }
          }
        ],
        "operationId": "DjangoAdminLogController.count"
      }
    },
    "/p/django_admin_log/{id}": {
      "put": {
        "x-controller-name": "DjangoAdminLogController",
        "x-operation-name": "replaceById",
        "tags": [
          "DjangoAdminLogController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoAdminLog PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DjangoAdminLog"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DjangoAdminLogController.replaceById"
      },
      "patch": {
        "x-controller-name": "DjangoAdminLogController",
        "x-operation-name": "updateById",
        "tags": [
          "DjangoAdminLogController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoAdminLog PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DjangoAdminLogPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DjangoAdminLogController.updateById"
      },
      "get": {
        "x-controller-name": "DjangoAdminLogController",
        "x-operation-name": "findById",
        "tags": [
          "DjangoAdminLogController"
        ],
        "responses": {
          "200": {
            "description": "DjangoAdminLog model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoAdminLogWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoAdminLog.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DjangoAdminLogController.findById"
      },
      "delete": {
        "x-controller-name": "DjangoAdminLogController",
        "x-operation-name": "deleteById",
        "tags": [
          "DjangoAdminLogController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoAdminLog DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "DjangoAdminLogController.deleteById"
      }
    },
    "/p/django_admin_log": {
      "post": {
        "x-controller-name": "DjangoAdminLogController",
        "x-operation-name": "create",
        "tags": [
          "DjangoAdminLogController"
        ],
        "responses": {
          "200": {
            "description": "DjangoAdminLog model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoAdminLog"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewDjangoAdminLog"
                }
              }
            }
          }
        },
        "operationId": "DjangoAdminLogController.create"
      },
      "patch": {
        "x-controller-name": "DjangoAdminLogController",
        "x-operation-name": "updateAll",
        "tags": [
          "DjangoAdminLogController"
        ],
        "responses": {
          "200": {
            "description": "DjangoAdminLog PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "DjangoAdminLog.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<DjangoAdminLog>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DjangoAdminLogPartial"
              }
            }
          }
        },
        "operationId": "DjangoAdminLogController.updateAll"
      },
      "get": {
        "x-controller-name": "DjangoAdminLogController",
        "x-operation-name": "find",
        "tags": [
          "DjangoAdminLogController"
        ],
        "responses": {
          "200": {
            "description": "Array of DjangoAdminLog model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DjangoAdminLogWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoAdminLog.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DjangoAdminLogController.find"
      }
    },
    "/p/django_content_type/batch": {
      "patch": {
        "x-controller-name": "DjangoContentTypeController",
        "x-operation-name": "update_batch",
        "tags": [
          "DjangoContentTypeController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoContentType PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/DjangoContentTypePartial"
                }
              }
            }
          }
        },
        "operationId": "DjangoContentTypeController.update_batch"
      }
    },
    "/p/django_content_type/count": {
      "get": {
        "x-controller-name": "DjangoContentTypeController",
        "x-operation-name": "count",
        "tags": [
          "DjangoContentTypeController"
        ],
        "responses": {
          "200": {
            "description": "DjangoContentType model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "DjangoContentType.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<DjangoContentType>"
                }
              }
            }
          }
        ],
        "operationId": "DjangoContentTypeController.count"
      }
    },
    "/p/django_content_type/{id}": {
      "put": {
        "x-controller-name": "DjangoContentTypeController",
        "x-operation-name": "replaceById",
        "tags": [
          "DjangoContentTypeController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoContentType PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DjangoContentType"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DjangoContentTypeController.replaceById"
      },
      "patch": {
        "x-controller-name": "DjangoContentTypeController",
        "x-operation-name": "updateById",
        "tags": [
          "DjangoContentTypeController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoContentType PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DjangoContentTypePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DjangoContentTypeController.updateById"
      },
      "get": {
        "x-controller-name": "DjangoContentTypeController",
        "x-operation-name": "findById",
        "tags": [
          "DjangoContentTypeController"
        ],
        "responses": {
          "200": {
            "description": "DjangoContentType model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoContentTypeWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoContentType.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DjangoContentTypeController.findById"
      },
      "delete": {
        "x-controller-name": "DjangoContentTypeController",
        "x-operation-name": "deleteById",
        "tags": [
          "DjangoContentTypeController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoContentType DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "DjangoContentTypeController.deleteById"
      }
    },
    "/p/django_content_type": {
      "post": {
        "x-controller-name": "DjangoContentTypeController",
        "x-operation-name": "create",
        "tags": [
          "DjangoContentTypeController"
        ],
        "responses": {
          "200": {
            "description": "DjangoContentType model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoContentType"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewDjangoContentType"
                }
              }
            }
          }
        },
        "operationId": "DjangoContentTypeController.create"
      },
      "patch": {
        "x-controller-name": "DjangoContentTypeController",
        "x-operation-name": "updateAll",
        "tags": [
          "DjangoContentTypeController"
        ],
        "responses": {
          "200": {
            "description": "DjangoContentType PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "DjangoContentType.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<DjangoContentType>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DjangoContentTypePartial"
              }
            }
          }
        },
        "operationId": "DjangoContentTypeController.updateAll"
      },
      "get": {
        "x-controller-name": "DjangoContentTypeController",
        "x-operation-name": "find",
        "tags": [
          "DjangoContentTypeController"
        ],
        "responses": {
          "200": {
            "description": "Array of DjangoContentType model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DjangoContentTypeWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoContentType.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DjangoContentTypeController.find"
      }
    },
    "/p/django_migrations/batch": {
      "patch": {
        "x-controller-name": "DjangoMigrationsController",
        "x-operation-name": "update_batch",
        "tags": [
          "DjangoMigrationsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoMigrations PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/DjangoMigrationsPartial"
                }
              }
            }
          }
        },
        "operationId": "DjangoMigrationsController.update_batch"
      }
    },
    "/p/django_migrations/count": {
      "get": {
        "x-controller-name": "DjangoMigrationsController",
        "x-operation-name": "count",
        "tags": [
          "DjangoMigrationsController"
        ],
        "responses": {
          "200": {
            "description": "DjangoMigrations model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "DjangoMigrations.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<DjangoMigrations>"
                }
              }
            }
          }
        ],
        "operationId": "DjangoMigrationsController.count"
      }
    },
    "/p/django_migrations/{id}": {
      "put": {
        "x-controller-name": "DjangoMigrationsController",
        "x-operation-name": "replaceById",
        "tags": [
          "DjangoMigrationsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoMigrations PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DjangoMigrations"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DjangoMigrationsController.replaceById"
      },
      "patch": {
        "x-controller-name": "DjangoMigrationsController",
        "x-operation-name": "updateById",
        "tags": [
          "DjangoMigrationsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoMigrations PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DjangoMigrationsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DjangoMigrationsController.updateById"
      },
      "get": {
        "x-controller-name": "DjangoMigrationsController",
        "x-operation-name": "findById",
        "tags": [
          "DjangoMigrationsController"
        ],
        "responses": {
          "200": {
            "description": "DjangoMigrations model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoMigrationsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoMigrations.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DjangoMigrationsController.findById"
      },
      "delete": {
        "x-controller-name": "DjangoMigrationsController",
        "x-operation-name": "deleteById",
        "tags": [
          "DjangoMigrationsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DjangoMigrations DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "DjangoMigrationsController.deleteById"
      }
    },
    "/p/django_migrations": {
      "post": {
        "x-controller-name": "DjangoMigrationsController",
        "x-operation-name": "create",
        "tags": [
          "DjangoMigrationsController"
        ],
        "responses": {
          "200": {
            "description": "DjangoMigrations model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoMigrations"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewDjangoMigrations"
                }
              }
            }
          }
        },
        "operationId": "DjangoMigrationsController.create"
      },
      "patch": {
        "x-controller-name": "DjangoMigrationsController",
        "x-operation-name": "updateAll",
        "tags": [
          "DjangoMigrationsController"
        ],
        "responses": {
          "200": {
            "description": "DjangoMigrations PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "DjangoMigrations.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<DjangoMigrations>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DjangoMigrationsPartial"
              }
            }
          }
        },
        "operationId": "DjangoMigrationsController.updateAll"
      },
      "get": {
        "x-controller-name": "DjangoMigrationsController",
        "x-operation-name": "find",
        "tags": [
          "DjangoMigrationsController"
        ],
        "responses": {
          "200": {
            "description": "Array of DjangoMigrations model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DjangoMigrationsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DjangoMigrations.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DjangoMigrationsController.find"
      }
    },
    "/p/execute_log/batch": {
      "patch": {
        "x-controller-name": "ExecuteLogController",
        "x-operation-name": "update_batch",
        "tags": [
          "ExecuteLogController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ExecuteLog PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ExecuteLogPartial"
                }
              }
            }
          }
        },
        "operationId": "ExecuteLogController.update_batch"
      }
    },
    "/p/execute_log/count": {
      "get": {
        "x-controller-name": "ExecuteLogController",
        "x-operation-name": "count",
        "tags": [
          "ExecuteLogController"
        ],
        "responses": {
          "200": {
            "description": "ExecuteLog model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "ExecuteLog.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<ExecuteLog>"
                }
              }
            }
          }
        ],
        "operationId": "ExecuteLogController.count"
      }
    },
    "/p/execute_log/{id}": {
      "put": {
        "x-controller-name": "ExecuteLogController",
        "x-operation-name": "replaceById",
        "tags": [
          "ExecuteLogController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ExecuteLog PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ExecuteLog"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ExecuteLogController.replaceById"
      },
      "patch": {
        "x-controller-name": "ExecuteLogController",
        "x-operation-name": "updateById",
        "tags": [
          "ExecuteLogController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ExecuteLog PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ExecuteLogPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ExecuteLogController.updateById"
      },
      "get": {
        "x-controller-name": "ExecuteLogController",
        "x-operation-name": "findById",
        "tags": [
          "ExecuteLogController"
        ],
        "responses": {
          "200": {
            "description": "ExecuteLog model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExecuteLogWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExecuteLog.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ExecuteLogController.findById"
      },
      "delete": {
        "x-controller-name": "ExecuteLogController",
        "x-operation-name": "deleteById",
        "tags": [
          "ExecuteLogController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ExecuteLog DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ExecuteLogController.deleteById"
      }
    },
    "/p/execute_log": {
      "post": {
        "x-controller-name": "ExecuteLogController",
        "x-operation-name": "create",
        "tags": [
          "ExecuteLogController"
        ],
        "responses": {
          "200": {
            "description": "ExecuteLog model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExecuteLog"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewExecuteLog"
                }
              }
            }
          }
        },
        "operationId": "ExecuteLogController.create"
      },
      "patch": {
        "x-controller-name": "ExecuteLogController",
        "x-operation-name": "updateAll",
        "tags": [
          "ExecuteLogController"
        ],
        "responses": {
          "200": {
            "description": "ExecuteLog PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "ExecuteLog.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<ExecuteLog>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ExecuteLogPartial"
              }
            }
          }
        },
        "operationId": "ExecuteLogController.updateAll"
      },
      "get": {
        "x-controller-name": "ExecuteLogController",
        "x-operation-name": "find",
        "tags": [
          "ExecuteLogController"
        ],
        "responses": {
          "200": {
            "description": "Array of ExecuteLog model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ExecuteLogWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExecuteLog.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ExecuteLogController.find"
      }
    },
    "/p/execute_schedule/batch": {
      "patch": {
        "x-controller-name": "ExecuteScheduleController",
        "x-operation-name": "update_batch",
        "tags": [
          "ExecuteScheduleController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ExecuteSchedule PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ExecuteSchedulePartial"
                }
              }
            }
          }
        },
        "operationId": "ExecuteScheduleController.update_batch"
      }
    },
    "/p/execute_schedule/count": {
      "get": {
        "x-controller-name": "ExecuteScheduleController",
        "x-operation-name": "count",
        "tags": [
          "ExecuteScheduleController"
        ],
        "responses": {
          "200": {
            "description": "ExecuteSchedule model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "ExecuteSchedule.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<ExecuteSchedule>"
                }
              }
            }
          }
        ],
        "operationId": "ExecuteScheduleController.count"
      }
    },
    "/p/execute_schedule/{id}": {
      "put": {
        "x-controller-name": "ExecuteScheduleController",
        "x-operation-name": "replaceById",
        "tags": [
          "ExecuteScheduleController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ExecuteSchedule PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ExecuteSchedule"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ExecuteScheduleController.replaceById"
      },
      "patch": {
        "x-controller-name": "ExecuteScheduleController",
        "x-operation-name": "updateById",
        "tags": [
          "ExecuteScheduleController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ExecuteSchedule PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ExecuteSchedulePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ExecuteScheduleController.updateById"
      },
      "get": {
        "x-controller-name": "ExecuteScheduleController",
        "x-operation-name": "findById",
        "tags": [
          "ExecuteScheduleController"
        ],
        "responses": {
          "200": {
            "description": "ExecuteSchedule model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExecuteScheduleWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExecuteSchedule.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ExecuteScheduleController.findById"
      },
      "delete": {
        "x-controller-name": "ExecuteScheduleController",
        "x-operation-name": "deleteById",
        "tags": [
          "ExecuteScheduleController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ExecuteSchedule DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "ExecuteScheduleController.deleteById"
      }
    },
    "/p/execute_schedule": {
      "post": {
        "x-controller-name": "ExecuteScheduleController",
        "x-operation-name": "create",
        "tags": [
          "ExecuteScheduleController"
        ],
        "responses": {
          "200": {
            "description": "ExecuteSchedule model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExecuteSchedule"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewExecuteSchedule"
                }
              }
            }
          }
        },
        "operationId": "ExecuteScheduleController.create"
      },
      "patch": {
        "x-controller-name": "ExecuteScheduleController",
        "x-operation-name": "updateAll",
        "tags": [
          "ExecuteScheduleController"
        ],
        "responses": {
          "200": {
            "description": "ExecuteSchedule PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "ExecuteSchedule.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<ExecuteSchedule>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ExecuteSchedulePartial"
              }
            }
          }
        },
        "operationId": "ExecuteScheduleController.updateAll"
      },
      "get": {
        "x-controller-name": "ExecuteScheduleController",
        "x-operation-name": "find",
        "tags": [
          "ExecuteScheduleController"
        ],
        "responses": {
          "200": {
            "description": "Array of ExecuteSchedule model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ExecuteScheduleWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ExecuteSchedule.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ExecuteScheduleController.find"
      }
    },
    "/p/files/{path}/{filename}": {
      "post": {
        "x-controller-name": "FileUploadController",
        "x-operation-name": "fileUploadSpecify",
        "tags": [
          "FileUploadController"
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "Files and fields"
          }
        },
        "parameters": [
          {
            "name": "path",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filename",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary"
                  }
                }
              }
            }
          },
          "description": "Request body for multipart/form-data based file upload",
          "required": true,
          "x-parameter-index": 2
        },
        "operationId": "FileUploadController.fileUploadSpecify"
      }
    },
    "/p/files/{filename}": {
      "get": {
        "x-controller-name": "FileDownloadController",
        "x-operation-name": "downloadFile",
        "tags": [
          "FileDownloadController"
        ],
        "responses": {
          "200": {
            "description": "The file content",
            "content": {
              "application/octet-stream": {
                "schema": {
                  "type": "string",
                  "format": "binary"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filename",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "FileDownloadController.downloadFile"
      }
    },
    "/p/files": {
      "post": {
        "x-controller-name": "FileUploadController",
        "x-operation-name": "fileUpload",
        "tags": [
          "FileUploadController"
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "Files and fields"
          }
        },
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "x-parser": "stream",
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "format": "binary"
                  }
                }
              }
            }
          },
          "description": "Request body for multipart/form-data based file upload",
          "required": true
        },
        "operationId": "FileUploadController.fileUpload"
      },
      "get": {
        "x-controller-name": "FileDownloadController",
        "x-operation-name": "listFiles",
        "tags": [
          "FileDownloadController"
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                }
              }
            },
            "description": "A list of files"
          }
        },
        "operationId": "FileDownloadController.listFiles"
      }
    },
    "/p/has_duplicate_operation_id_all_approved/count": {
      "get": {
        "x-controller-name": "HasDuplicateOperationIdAllApprovedController",
        "x-operation-name": "count",
        "tags": [
          "HasDuplicateOperationIdAllApprovedController"
        ],
        "responses": {
          "200": {
            "description": "HasDuplicateOperationIdAllApproved model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "HasDuplicateOperationIdAllApproved.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<HasDuplicateOperationIdAllApproved>"
                }
              }
            }
          }
        ],
        "operationId": "HasDuplicateOperationIdAllApprovedController.count"
      }
    },
    "/p/has_duplicate_operation_id_all_approved/{id}": {
      "put": {
        "x-controller-name": "HasDuplicateOperationIdAllApprovedController",
        "x-operation-name": "replaceById",
        "tags": [
          "HasDuplicateOperationIdAllApprovedController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "HasDuplicateOperationIdAllApproved PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/HasDuplicateOperationIdAllApproved"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "HasDuplicateOperationIdAllApprovedController.replaceById"
      },
      "patch": {
        "x-controller-name": "HasDuplicateOperationIdAllApprovedController",
        "x-operation-name": "updateById",
        "tags": [
          "HasDuplicateOperationIdAllApprovedController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "HasDuplicateOperationIdAllApproved PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/HasDuplicateOperationIdAllApprovedPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "HasDuplicateOperationIdAllApprovedController.updateById"
      },
      "get": {
        "x-controller-name": "HasDuplicateOperationIdAllApprovedController",
        "x-operation-name": "findById",
        "tags": [
          "HasDuplicateOperationIdAllApprovedController"
        ],
        "responses": {
          "200": {
            "description": "HasDuplicateOperationIdAllApproved model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HasDuplicateOperationIdAllApprovedWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HasDuplicateOperationIdAllApproved.Filter"
                }
              }
            }
          }
        ],
        "operationId": "HasDuplicateOperationIdAllApprovedController.findById"
      },
      "delete": {
        "x-controller-name": "HasDuplicateOperationIdAllApprovedController",
        "x-operation-name": "deleteById",
        "tags": [
          "HasDuplicateOperationIdAllApprovedController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "HasDuplicateOperationIdAllApproved DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "HasDuplicateOperationIdAllApprovedController.deleteById"
      }
    },
    "/p/has_duplicate_operation_id_all_approved": {
      "post": {
        "x-controller-name": "HasDuplicateOperationIdAllApprovedController",
        "x-operation-name": "create",
        "tags": [
          "HasDuplicateOperationIdAllApprovedController"
        ],
        "responses": {
          "200": {
            "description": "HasDuplicateOperationIdAllApproved model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HasDuplicateOperationIdAllApproved"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewHasDuplicateOperationIdAllApproved"
              }
            }
          }
        },
        "operationId": "HasDuplicateOperationIdAllApprovedController.create"
      },
      "patch": {
        "x-controller-name": "HasDuplicateOperationIdAllApprovedController",
        "x-operation-name": "updateAll",
        "tags": [
          "HasDuplicateOperationIdAllApprovedController"
        ],
        "responses": {
          "200": {
            "description": "HasDuplicateOperationIdAllApproved PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "HasDuplicateOperationIdAllApproved.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<HasDuplicateOperationIdAllApproved>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/HasDuplicateOperationIdAllApprovedPartial"
              }
            }
          }
        },
        "operationId": "HasDuplicateOperationIdAllApprovedController.updateAll"
      },
      "get": {
        "x-controller-name": "HasDuplicateOperationIdAllApprovedController",
        "x-operation-name": "find",
        "tags": [
          "HasDuplicateOperationIdAllApprovedController"
        ],
        "responses": {
          "200": {
            "description": "Array of HasDuplicateOperationIdAllApproved model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/HasDuplicateOperationIdAllApprovedWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HasDuplicateOperationIdAllApproved.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "HasDuplicateOperationIdAllApprovedController.find"
      }
    },
    "/p/has_duplicate_operation_id_with_mixed_status/count": {
      "get": {
        "x-controller-name": "HasDuplicateOperationIdWithMixedStatusController",
        "x-operation-name": "count",
        "tags": [
          "HasDuplicateOperationIdWithMixedStatusController"
        ],
        "responses": {
          "200": {
            "description": "HasDuplicateOperationIdWithMixedStatus model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "HasDuplicateOperationIdWithMixedStatus.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<HasDuplicateOperationIdWithMixedStatus>"
                }
              }
            }
          }
        ],
        "operationId": "HasDuplicateOperationIdWithMixedStatusController.count"
      }
    },
    "/p/has_duplicate_operation_id_with_mixed_status/{id}": {
      "put": {
        "x-controller-name": "HasDuplicateOperationIdWithMixedStatusController",
        "x-operation-name": "replaceById",
        "tags": [
          "HasDuplicateOperationIdWithMixedStatusController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "HasDuplicateOperationIdWithMixedStatus PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/HasDuplicateOperationIdWithMixedStatus"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "HasDuplicateOperationIdWithMixedStatusController.replaceById"
      },
      "patch": {
        "x-controller-name": "HasDuplicateOperationIdWithMixedStatusController",
        "x-operation-name": "updateById",
        "tags": [
          "HasDuplicateOperationIdWithMixedStatusController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "HasDuplicateOperationIdWithMixedStatus PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/HasDuplicateOperationIdWithMixedStatusPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "HasDuplicateOperationIdWithMixedStatusController.updateById"
      },
      "get": {
        "x-controller-name": "HasDuplicateOperationIdWithMixedStatusController",
        "x-operation-name": "findById",
        "tags": [
          "HasDuplicateOperationIdWithMixedStatusController"
        ],
        "responses": {
          "200": {
            "description": "HasDuplicateOperationIdWithMixedStatus model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HasDuplicateOperationIdWithMixedStatusWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HasDuplicateOperationIdWithMixedStatus.Filter"
                }
              }
            }
          }
        ],
        "operationId": "HasDuplicateOperationIdWithMixedStatusController.findById"
      },
      "delete": {
        "x-controller-name": "HasDuplicateOperationIdWithMixedStatusController",
        "x-operation-name": "deleteById",
        "tags": [
          "HasDuplicateOperationIdWithMixedStatusController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "HasDuplicateOperationIdWithMixedStatus DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "HasDuplicateOperationIdWithMixedStatusController.deleteById"
      }
    },
    "/p/has_duplicate_operation_id_with_mixed_status": {
      "post": {
        "x-controller-name": "HasDuplicateOperationIdWithMixedStatusController",
        "x-operation-name": "create",
        "tags": [
          "HasDuplicateOperationIdWithMixedStatusController"
        ],
        "responses": {
          "200": {
            "description": "HasDuplicateOperationIdWithMixedStatus model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HasDuplicateOperationIdWithMixedStatus"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewHasDuplicateOperationIdWithMixedStatus"
              }
            }
          }
        },
        "operationId": "HasDuplicateOperationIdWithMixedStatusController.create"
      },
      "patch": {
        "x-controller-name": "HasDuplicateOperationIdWithMixedStatusController",
        "x-operation-name": "updateAll",
        "tags": [
          "HasDuplicateOperationIdWithMixedStatusController"
        ],
        "responses": {
          "200": {
            "description": "HasDuplicateOperationIdWithMixedStatus PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "HasDuplicateOperationIdWithMixedStatus.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<HasDuplicateOperationIdWithMixedStatus>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/HasDuplicateOperationIdWithMixedStatusPartial"
              }
            }
          }
        },
        "operationId": "HasDuplicateOperationIdWithMixedStatusController.updateAll"
      },
      "get": {
        "x-controller-name": "HasDuplicateOperationIdWithMixedStatusController",
        "x-operation-name": "find",
        "tags": [
          "HasDuplicateOperationIdWithMixedStatusController"
        ],
        "responses": {
          "200": {
            "description": "Array of HasDuplicateOperationIdWithMixedStatus model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/HasDuplicateOperationIdWithMixedStatusWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HasDuplicateOperationIdWithMixedStatus.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "HasDuplicateOperationIdWithMixedStatusController.find"
      }
    },
    "/p/item/batch": {
      "patch": {
        "x-controller-name": "ItemController",
        "x-operation-name": "update_batch",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Item PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ItemPartial"
                }
              }
            }
          }
        },
        "operationId": "ItemController.update_batch"
      }
    },
    "/p/item/count": {
      "get": {
        "x-controller-name": "ItemController",
        "x-operation-name": "count",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "Item model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Item.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Item>"
                }
              }
            }
          }
        ],
        "operationId": "ItemController.count"
      }
    },
    "/p/item/{id}": {
      "put": {
        "x-controller-name": "ItemController",
        "x-operation-name": "replaceById",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Item PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Item"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ItemController.replaceById"
      },
      "patch": {
        "x-controller-name": "ItemController",
        "x-operation-name": "updateById",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Item PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ItemPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ItemController.updateById"
      },
      "get": {
        "x-controller-name": "ItemController",
        "x-operation-name": "findById",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "Item model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ItemWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Item.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ItemController.findById"
      },
      "delete": {
        "x-controller-name": "ItemController",
        "x-operation-name": "deleteById",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Item DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "ItemController.deleteById"
      }
    },
    "/p/item": {
      "post": {
        "x-controller-name": "ItemController",
        "x-operation-name": "create",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "Item model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Item"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewItem"
                }
              }
            }
          }
        },
        "operationId": "ItemController.create"
      },
      "patch": {
        "x-controller-name": "ItemController",
        "x-operation-name": "updateAll",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "Item PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Item.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Item>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ItemPartial"
              }
            }
          }
        },
        "operationId": "ItemController.updateAll"
      },
      "get": {
        "x-controller-name": "ItemController",
        "x-operation-name": "find",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "Array of Item model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ItemWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Item.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ItemController.find"
      }
    },
    "/p/itemdistribution/batch": {
      "patch": {
        "x-controller-name": "ItemdistributionController",
        "x-operation-name": "update_batch",
        "tags": [
          "ItemdistributionController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Itemdistribution PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ItemdistributionPartial"
                }
              }
            }
          }
        },
        "operationId": "ItemdistributionController.update_batch"
      }
    },
    "/p/itemdistribution/count": {
      "get": {
        "x-controller-name": "ItemdistributionController",
        "x-operation-name": "count",
        "tags": [
          "ItemdistributionController"
        ],
        "responses": {
          "200": {
            "description": "Itemdistribution model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Itemdistribution.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Itemdistribution>"
                }
              }
            }
          }
        ],
        "operationId": "ItemdistributionController.count"
      }
    },
    "/p/itemdistribution/{id}": {
      "put": {
        "x-controller-name": "ItemdistributionController",
        "x-operation-name": "replaceById",
        "tags": [
          "ItemdistributionController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Itemdistribution PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Itemdistribution"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ItemdistributionController.replaceById"
      },
      "patch": {
        "x-controller-name": "ItemdistributionController",
        "x-operation-name": "updateById",
        "tags": [
          "ItemdistributionController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Itemdistribution PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ItemdistributionPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ItemdistributionController.updateById"
      },
      "get": {
        "x-controller-name": "ItemdistributionController",
        "x-operation-name": "findById",
        "tags": [
          "ItemdistributionController"
        ],
        "responses": {
          "200": {
            "description": "Itemdistribution model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ItemdistributionWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Itemdistribution.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ItemdistributionController.findById"
      },
      "delete": {
        "x-controller-name": "ItemdistributionController",
        "x-operation-name": "deleteById",
        "tags": [
          "ItemdistributionController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Itemdistribution DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ItemdistributionController.deleteById"
      }
    },
    "/p/itemdistribution": {
      "post": {
        "x-controller-name": "ItemdistributionController",
        "x-operation-name": "create",
        "tags": [
          "ItemdistributionController"
        ],
        "responses": {
          "200": {
            "description": "Itemdistribution model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Itemdistribution"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewItemdistribution"
                }
              }
            }
          }
        },
        "operationId": "ItemdistributionController.create"
      },
      "patch": {
        "x-controller-name": "ItemdistributionController",
        "x-operation-name": "updateAll",
        "tags": [
          "ItemdistributionController"
        ],
        "responses": {
          "200": {
            "description": "Itemdistribution PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Itemdistribution.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Itemdistribution>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ItemdistributionPartial"
              }
            }
          }
        },
        "operationId": "ItemdistributionController.updateAll"
      },
      "get": {
        "x-controller-name": "ItemdistributionController",
        "x-operation-name": "find",
        "tags": [
          "ItemdistributionController"
        ],
        "responses": {
          "200": {
            "description": "Array of Itemdistribution model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ItemdistributionWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Itemdistribution.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ItemdistributionController.find"
      }
    },
    "/p/itemsupplier/batch": {
      "patch": {
        "x-controller-name": "ItemsupplierController",
        "x-operation-name": "update_batch",
        "tags": [
          "ItemsupplierController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Itemsupplier PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ItemsupplierPartial"
                }
              }
            }
          }
        },
        "operationId": "ItemsupplierController.update_batch"
      }
    },
    "/p/itemsupplier/count": {
      "get": {
        "x-controller-name": "ItemsupplierController",
        "x-operation-name": "count",
        "tags": [
          "ItemsupplierController"
        ],
        "responses": {
          "200": {
            "description": "Itemsupplier model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Itemsupplier.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Itemsupplier>"
                }
              }
            }
          }
        ],
        "operationId": "ItemsupplierController.count"
      }
    },
    "/p/itemsupplier/{id}": {
      "put": {
        "x-controller-name": "ItemsupplierController",
        "x-operation-name": "replaceById",
        "tags": [
          "ItemsupplierController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Itemsupplier PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Itemsupplier"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ItemsupplierController.replaceById"
      },
      "patch": {
        "x-controller-name": "ItemsupplierController",
        "x-operation-name": "updateById",
        "tags": [
          "ItemsupplierController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Itemsupplier PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ItemsupplierPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ItemsupplierController.updateById"
      },
      "get": {
        "x-controller-name": "ItemsupplierController",
        "x-operation-name": "findById",
        "tags": [
          "ItemsupplierController"
        ],
        "responses": {
          "200": {
            "description": "Itemsupplier model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ItemsupplierWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Itemsupplier.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ItemsupplierController.findById"
      },
      "delete": {
        "x-controller-name": "ItemsupplierController",
        "x-operation-name": "deleteById",
        "tags": [
          "ItemsupplierController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Itemsupplier DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ItemsupplierController.deleteById"
      }
    },
    "/p/itemsupplier": {
      "post": {
        "x-controller-name": "ItemsupplierController",
        "x-operation-name": "create",
        "tags": [
          "ItemsupplierController"
        ],
        "responses": {
          "200": {
            "description": "Itemsupplier model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Itemsupplier"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewItemsupplier"
                }
              }
            }
          }
        },
        "operationId": "ItemsupplierController.create"
      },
      "patch": {
        "x-controller-name": "ItemsupplierController",
        "x-operation-name": "updateAll",
        "tags": [
          "ItemsupplierController"
        ],
        "responses": {
          "200": {
            "description": "Itemsupplier PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Itemsupplier.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Itemsupplier>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ItemsupplierPartial"
              }
            }
          }
        },
        "operationId": "ItemsupplierController.updateAll"
      },
      "get": {
        "x-controller-name": "ItemsupplierController",
        "x-operation-name": "find",
        "tags": [
          "ItemsupplierController"
        ],
        "responses": {
          "200": {
            "description": "Array of Itemsupplier model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ItemsupplierWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Itemsupplier.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ItemsupplierController.find"
      }
    },
    "/p/location/batch": {
      "patch": {
        "x-controller-name": "LocationController",
        "x-operation-name": "update_batch",
        "tags": [
          "LocationController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Location PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/LocationPartial"
                }
              }
            }
          }
        },
        "operationId": "LocationController.update_batch"
      }
    },
    "/p/location/count": {
      "get": {
        "x-controller-name": "LocationController",
        "x-operation-name": "count",
        "tags": [
          "LocationController"
        ],
        "responses": {
          "200": {
            "description": "Location model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Location.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Location>"
                }
              }
            }
          }
        ],
        "operationId": "LocationController.count"
      }
    },
    "/p/location/{id}": {
      "put": {
        "x-controller-name": "LocationController",
        "x-operation-name": "replaceById",
        "tags": [
          "LocationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Location PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Location"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "LocationController.replaceById"
      },
      "patch": {
        "x-controller-name": "LocationController",
        "x-operation-name": "updateById",
        "tags": [
          "LocationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Location PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LocationPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "LocationController.updateById"
      },
      "get": {
        "x-controller-name": "LocationController",
        "x-operation-name": "findById",
        "tags": [
          "LocationController"
        ],
        "responses": {
          "200": {
            "description": "Location model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LocationWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Location.Filter"
                }
              }
            }
          }
        ],
        "operationId": "LocationController.findById"
      },
      "delete": {
        "x-controller-name": "LocationController",
        "x-operation-name": "deleteById",
        "tags": [
          "LocationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Location DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "LocationController.deleteById"
      }
    },
    "/p/location": {
      "post": {
        "x-controller-name": "LocationController",
        "x-operation-name": "create",
        "tags": [
          "LocationController"
        ],
        "responses": {
          "200": {
            "description": "Location model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Location"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewLocation"
                }
              }
            }
          }
        },
        "operationId": "LocationController.create"
      },
      "patch": {
        "x-controller-name": "LocationController",
        "x-operation-name": "updateAll",
        "tags": [
          "LocationController"
        ],
        "responses": {
          "200": {
            "description": "Location PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Location.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Location>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LocationPartial"
              }
            }
          }
        },
        "operationId": "LocationController.updateAll"
      },
      "get": {
        "x-controller-name": "LocationController",
        "x-operation-name": "find",
        "tags": [
          "LocationController"
        ],
        "responses": {
          "200": {
            "description": "Array of Location model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LocationWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Location.Filter"
                }
              }
            }
          }
        ],
        "operationId": "LocationController.find"
      }
    },
    "/p/operation/batch": {
      "patch": {
        "x-controller-name": "OperationController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operation PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationController.update_batch"
      }
    },
    "/p/operation/count": {
      "get": {
        "x-controller-name": "OperationController",
        "x-operation-name": "count",
        "tags": [
          "OperationController"
        ],
        "responses": {
          "200": {
            "description": "Operation model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operation.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operation>"
                }
              }
            }
          }
        ],
        "operationId": "OperationController.count"
      }
    },
    "/p/operation/{id}": {
      "put": {
        "x-controller-name": "OperationController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operation PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Operation"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operation PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationController.updateById"
      },
      "get": {
        "x-controller-name": "OperationController",
        "x-operation-name": "findById",
        "tags": [
          "OperationController"
        ],
        "responses": {
          "200": {
            "description": "Operation model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operation.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationController.findById"
      },
      "delete": {
        "x-controller-name": "OperationController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operation DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "OperationController.deleteById"
      }
    },
    "/p/operation": {
      "post": {
        "x-controller-name": "OperationController",
        "x-operation-name": "create",
        "tags": [
          "OperationController"
        ],
        "responses": {
          "200": {
            "description": "Operation model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operation"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperation"
                }
              }
            }
          }
        },
        "operationId": "OperationController.create"
      },
      "patch": {
        "x-controller-name": "OperationController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationController"
        ],
        "responses": {
          "200": {
            "description": "Operation PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operation.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operation>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationPartial"
              }
            }
          }
        },
        "operationId": "OperationController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationController",
        "x-operation-name": "find",
        "tags": [
          "OperationController"
        ],
        "responses": {
          "200": {
            "description": "Array of Operation model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operation.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationController.find"
      }
    },
    "/p/operation_costbynumber/count": {
      "get": {
        "x-controller-name": "OperationCostbynumberController",
        "x-operation-name": "count",
        "tags": [
          "OperationCostbynumberController"
        ],
        "responses": {
          "200": {
            "description": "OperationCostbynumber model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationCostbynumber.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationCostbynumber>"
                }
              }
            }
          }
        ],
        "operationId": "OperationCostbynumberController.count"
      }
    },
    "/p/operation_costbynumber/{id}": {
      "put": {
        "x-controller-name": "OperationCostbynumberController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationCostbynumberController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationCostbynumber PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationCostbynumber"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationCostbynumberController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationCostbynumberController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationCostbynumberController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationCostbynumber PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationCostbynumberPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationCostbynumberController.updateById"
      },
      "get": {
        "x-controller-name": "OperationCostbynumberController",
        "x-operation-name": "findById",
        "tags": [
          "OperationCostbynumberController"
        ],
        "responses": {
          "200": {
            "description": "OperationCostbynumber model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationCostbynumberWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationCostbynumber.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationCostbynumberController.findById"
      },
      "delete": {
        "x-controller-name": "OperationCostbynumberController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationCostbynumberController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationCostbynumber DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationCostbynumberController.deleteById"
      }
    },
    "/p/operation_costbynumber": {
      "post": {
        "x-controller-name": "OperationCostbynumberController",
        "x-operation-name": "create",
        "tags": [
          "OperationCostbynumberController"
        ],
        "responses": {
          "200": {
            "description": "OperationCostbynumber model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationCostbynumber"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewOperationCostbynumber"
              }
            }
          }
        },
        "operationId": "OperationCostbynumberController.create"
      },
      "patch": {
        "x-controller-name": "OperationCostbynumberController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationCostbynumberController"
        ],
        "responses": {
          "200": {
            "description": "OperationCostbynumber PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationCostbynumber.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationCostbynumber>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationCostbynumberPartial"
              }
            }
          }
        },
        "operationId": "OperationCostbynumberController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationCostbynumberController",
        "x-operation-name": "find",
        "tags": [
          "OperationCostbynumberController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationCostbynumber model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationCostbynumberWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationCostbynumber.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "OperationCostbynumberController.find"
      }
    },
    "/p/operation_label/batch": {
      "patch": {
        "x-controller-name": "OperationLabelController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationLabelController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationLabel PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationLabelPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationLabelController.update_batch"
      }
    },
    "/p/operation_label/count": {
      "get": {
        "x-controller-name": "OperationLabelController",
        "x-operation-name": "count",
        "tags": [
          "OperationLabelController"
        ],
        "responses": {
          "200": {
            "description": "OperationLabel model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationLabel.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationLabel>"
                }
              }
            }
          }
        ],
        "operationId": "OperationLabelController.count"
      }
    },
    "/p/operation_label/{id}": {
      "put": {
        "x-controller-name": "OperationLabelController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationLabelController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationLabel PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationLabel"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationLabelController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationLabelController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationLabelController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationLabel PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationLabelPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationLabelController.updateById"
      },
      "get": {
        "x-controller-name": "OperationLabelController",
        "x-operation-name": "findById",
        "tags": [
          "OperationLabelController"
        ],
        "responses": {
          "200": {
            "description": "OperationLabel model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationLabelWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationLabel.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationLabelController.findById"
      },
      "delete": {
        "x-controller-name": "OperationLabelController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationLabelController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationLabel DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationLabelController.deleteById"
      }
    },
    "/p/operation_label": {
      "post": {
        "x-controller-name": "OperationLabelController",
        "x-operation-name": "create",
        "tags": [
          "OperationLabelController"
        ],
        "responses": {
          "200": {
            "description": "OperationLabel model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationLabel"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationLabel"
                }
              }
            }
          }
        },
        "operationId": "OperationLabelController.create"
      },
      "patch": {
        "x-controller-name": "OperationLabelController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationLabelController"
        ],
        "responses": {
          "200": {
            "description": "OperationLabel PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationLabel.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationLabel>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationLabelPartial"
              }
            }
          }
        },
        "operationId": "OperationLabelController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationLabelController",
        "x-operation-name": "find",
        "tags": [
          "OperationLabelController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationLabel model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationLabelWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationLabel.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationLabelController.find"
      }
    },
    "/p/operation_record/count": {
      "get": {
        "x-controller-name": "OperationRecordController",
        "x-operation-name": "count",
        "tags": [
          "OperationRecordController"
        ],
        "responses": {
          "200": {
            "description": "OperationRecord model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationRecord.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationRecord>"
                }
              }
            }
          }
        ],
        "operationId": "OperationRecordController.count"
      }
    },
    "/p/operation_record/{id}": {
      "put": {
        "x-controller-name": "OperationRecordController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationRecordController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRecord PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationRecord"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationRecordController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationRecordController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationRecordController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRecord PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationRecordPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationRecordController.updateById"
      },
      "get": {
        "x-controller-name": "OperationRecordController",
        "x-operation-name": "findById",
        "tags": [
          "OperationRecordController"
        ],
        "responses": {
          "200": {
            "description": "OperationRecord model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRecordWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRecord.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationRecordController.findById"
      },
      "delete": {
        "x-controller-name": "OperationRecordController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationRecordController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRecord DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationRecordController.deleteById"
      }
    },
    "/p/operation_record": {
      "post": {
        "x-controller-name": "OperationRecordController",
        "x-operation-name": "create",
        "tags": [
          "OperationRecordController"
        ],
        "responses": {
          "200": {
            "description": "OperationRecord model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRecord"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewOperationRecord"
              }
            }
          }
        },
        "operationId": "OperationRecordController.create"
      },
      "patch": {
        "x-controller-name": "OperationRecordController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationRecordController"
        ],
        "responses": {
          "200": {
            "description": "OperationRecord PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationRecord.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationRecord>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationRecordPartial"
              }
            }
          }
        },
        "operationId": "OperationRecordController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationRecordController",
        "x-operation-name": "find",
        "tags": [
          "OperationRecordController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationRecord model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationRecordWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRecord.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "OperationRecordController.find"
      }
    },
    "/p/operation_routing_label/batch": {
      "patch": {
        "x-controller-name": "OperationRoutingLabelController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationRoutingLabelController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRoutingLabel PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationRoutingLabelPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationRoutingLabelController.update_batch"
      }
    },
    "/p/operation_routing_label/count": {
      "get": {
        "x-controller-name": "OperationRoutingLabelController",
        "x-operation-name": "count",
        "tags": [
          "OperationRoutingLabelController"
        ],
        "responses": {
          "200": {
            "description": "OperationRoutingLabel model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationRoutingLabel.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationRoutingLabel>"
                }
              }
            }
          }
        ],
        "operationId": "OperationRoutingLabelController.count"
      }
    },
    "/p/operation_routing_label/{id}": {
      "put": {
        "x-controller-name": "OperationRoutingLabelController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationRoutingLabelController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRoutingLabel PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationRoutingLabel"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationRoutingLabelController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationRoutingLabelController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationRoutingLabelController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRoutingLabel PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationRoutingLabelPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationRoutingLabelController.updateById"
      },
      "get": {
        "x-controller-name": "OperationRoutingLabelController",
        "x-operation-name": "findById",
        "tags": [
          "OperationRoutingLabelController"
        ],
        "responses": {
          "200": {
            "description": "OperationRoutingLabel model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRoutingLabelWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRoutingLabel.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationRoutingLabelController.findById"
      },
      "delete": {
        "x-controller-name": "OperationRoutingLabelController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationRoutingLabelController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRoutingLabel DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationRoutingLabelController.deleteById"
      }
    },
    "/p/operation_routing_label": {
      "post": {
        "x-controller-name": "OperationRoutingLabelController",
        "x-operation-name": "create",
        "tags": [
          "OperationRoutingLabelController"
        ],
        "responses": {
          "200": {
            "description": "OperationRoutingLabel model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRoutingLabel"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationRoutingLabel"
                }
              }
            }
          }
        },
        "operationId": "OperationRoutingLabelController.create"
      },
      "patch": {
        "x-controller-name": "OperationRoutingLabelController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationRoutingLabelController"
        ],
        "responses": {
          "200": {
            "description": "OperationRouting PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationRoutingLabel.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationRoutingLabel>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationRoutingLabelPartial"
              }
            }
          }
        },
        "operationId": "OperationRoutingLabelController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationRoutingLabelController",
        "x-operation-name": "find",
        "tags": [
          "OperationRoutingLabelController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationRoutingLabel model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationRoutingLabelWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRoutingLabel.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationRoutingLabelController.find"
      }
    },
    "/p/operation_routing_name/batch": {
      "patch": {
        "x-controller-name": "OperationRoutingNameController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationRoutingNameController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRoutingName PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationRoutingNamePartial"
                }
              }
            }
          }
        },
        "operationId": "OperationRoutingNameController.update_batch"
      }
    },
    "/p/operation_routing_name/count": {
      "get": {
        "x-controller-name": "OperationRoutingNameController",
        "x-operation-name": "count",
        "tags": [
          "OperationRoutingNameController"
        ],
        "responses": {
          "200": {
            "description": "OperationRoutingName model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationRoutingName.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationRoutingName>"
                }
              }
            }
          }
        ],
        "operationId": "OperationRoutingNameController.count"
      }
    },
    "/p/operation_routing_name/{id}": {
      "put": {
        "x-controller-name": "OperationRoutingNameController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationRoutingNameController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRoutingName PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationRoutingName"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationRoutingNameController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationRoutingNameController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationRoutingNameController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRoutingName PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationRoutingNamePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationRoutingNameController.updateById"
      },
      "get": {
        "x-controller-name": "OperationRoutingNameController",
        "x-operation-name": "findById",
        "tags": [
          "OperationRoutingNameController"
        ],
        "responses": {
          "200": {
            "description": "OperationRoutingName model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRoutingNameWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRoutingName.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationRoutingNameController.findById"
      },
      "delete": {
        "x-controller-name": "OperationRoutingNameController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationRoutingNameController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationRoutingName DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationRoutingNameController.deleteById"
      }
    },
    "/p/operation_routing_name": {
      "post": {
        "x-controller-name": "OperationRoutingNameController",
        "x-operation-name": "create",
        "tags": [
          "OperationRoutingNameController"
        ],
        "responses": {
          "200": {
            "description": "OperationRoutingName model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRoutingName"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationRoutingName"
                }
              }
            }
          }
        },
        "operationId": "OperationRoutingNameController.create"
      },
      "patch": {
        "x-controller-name": "OperationRoutingNameController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationRoutingNameController"
        ],
        "responses": {
          "200": {
            "description": "OperationRoutingName PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationRoutingName.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationRoutingName>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationRoutingNamePartial"
              }
            }
          }
        },
        "operationId": "OperationRoutingNameController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationRoutingNameController",
        "x-operation-name": "find",
        "tags": [
          "OperationRoutingNameController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationRoutingName model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationRoutingNameWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRoutingName.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationRoutingNameController.find"
      }
    },
    "/p/operation_routing_name_single": {
      "post": {
        "x-controller-name": "OperationRoutingNameController",
        "x-operation-name": "create_single",
        "tags": [
          "OperationRoutingNameController"
        ],
        "responses": {
          "200": {
            "description": "OperationRoutingName model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationRoutingName"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationRoutingName"
                }
              }
            }
          }
        },
        "operationId": "OperationRoutingNameController.create_single"
      }
    },
    "/p/operationmaterial/batch": {
      "patch": {
        "x-controller-name": "OperationmaterialController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationmaterialController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationmaterial PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationmaterialPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationmaterialController.update_batch"
      }
    },
    "/p/operationmaterial/count": {
      "get": {
        "x-controller-name": "OperationmaterialController",
        "x-operation-name": "count",
        "tags": [
          "OperationmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationmaterial model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationmaterial.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationmaterial>"
                }
              }
            }
          }
        ],
        "operationId": "OperationmaterialController.count"
      }
    },
    "/p/operationmaterial/{id}": {
      "put": {
        "x-controller-name": "OperationmaterialController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationmaterialController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationmaterial PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Operationmaterial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationmaterialController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationmaterialController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationmaterialController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationmaterial PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationmaterialPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationmaterialController.updateById"
      },
      "get": {
        "x-controller-name": "OperationmaterialController",
        "x-operation-name": "findById",
        "tags": [
          "OperationmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationmaterial model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationmaterialWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationmaterial.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationmaterialController.findById"
      },
      "delete": {
        "x-controller-name": "OperationmaterialController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationmaterialController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationmaterial DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationmaterialController.deleteById"
      }
    },
    "/p/operationmaterial": {
      "post": {
        "x-controller-name": "OperationmaterialController",
        "x-operation-name": "create",
        "tags": [
          "OperationmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationmaterial model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationmaterial"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationmaterial"
                }
              }
            }
          }
        },
        "operationId": "OperationmaterialController.create"
      },
      "patch": {
        "x-controller-name": "OperationmaterialController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationmaterial PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationmaterial.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationmaterial>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationmaterialPartial"
              }
            }
          }
        },
        "operationId": "OperationmaterialController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationmaterialController",
        "x-operation-name": "find",
        "tags": [
          "OperationmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Array of Operationmaterial model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationmaterialWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationmaterial.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationmaterialController.find"
      }
    },
    "/p/operationplan/batch": {
      "patch": {
        "x-controller-name": "OperationplanController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplan PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanController.update_batch"
      }
    },
    "/p/operationplan/count": {
      "get": {
        "x-controller-name": "OperationplanController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationplan.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationplan>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanController.count"
      }
    },
    "/p/operationplan/{id}": {
      "put": {
        "x-controller-name": "OperationplanController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplan PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Operationplan"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplan PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplan.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplan DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanController.deleteById"
      }
    },
    "/p/operationplan": {
      "post": {
        "x-controller-name": "OperationplanController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplan"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplan"
                }
              }
            }
          }
        },
        "operationId": "OperationplanController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationplan.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationplan>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanPartial"
              }
            }
          }
        },
        "operationId": "OperationplanController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanController"
        ],
        "responses": {
          "200": {
            "description": "Array of Operationplan model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplan.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanController.find"
      }
    },
    "/p/operationplan_bom/batch": {
      "patch": {
        "x-controller-name": "OperationplanBomController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanBomController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanBom PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanBomPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanBomController.update_batch"
      }
    },
    "/p/operationplan_bom/count": {
      "get": {
        "x-controller-name": "OperationplanBomController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanBomController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanBom model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanBom.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanBom>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanBomController.count"
      }
    },
    "/p/operationplan_bom/{id}": {
      "put": {
        "x-controller-name": "OperationplanBomController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanBomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanBom PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanBom"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanBomController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanBomController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanBomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanBom PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanBomPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanBomController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanBomController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanBomController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanBom model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanBomWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanBom.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanBomController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanBomController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanBomController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanBom DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanBomController.deleteById"
      }
    },
    "/p/operationplan_bom": {
      "post": {
        "x-controller-name": "OperationplanBomController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanBomController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanBom model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanBom"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanBom"
                }
              }
            }
          }
        },
        "operationId": "OperationplanBomController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanBomController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanBomController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanBom PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanBom.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanBom>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanBomPartial"
              }
            }
          }
        },
        "operationId": "OperationplanBomController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanBomController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanBomController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanBom model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanBomWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanBom.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanBomController.find"
      }
    },
    "/p/operationplan_bom_price/batch": {
      "patch": {
        "x-controller-name": "OperationplanBomPriceController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanBomPriceController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanBomPrice PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanBomPricePartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanBomPriceController.update_batch"
      }
    },
    "/p/operationplan_bom_price/count": {
      "get": {
        "x-controller-name": "OperationplanBomPriceController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanBomPriceController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanBomPrice model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanBomPrice.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanBomPrice>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanBomPriceController.count"
      }
    },
    "/p/operationplan_bom_price/{id}": {
      "put": {
        "x-controller-name": "OperationplanBomPriceController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanBomPriceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanBomPrice PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanBomPrice"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanBomPriceController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanBomPriceController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanBomPriceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanBomPrice PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanBomPricePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanBomPriceController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanBomPriceController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanBomPriceController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanBomPrice model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanBomPriceWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanBomPrice.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanBomPriceController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanBomPriceController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanBomPriceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanBomPrice DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanBomPriceController.deleteById"
      }
    },
    "/p/operationplan_bom_price": {
      "post": {
        "x-controller-name": "OperationplanBomPriceController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanBomPriceController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanBomPrice model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanBomPrice"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanBomPrice"
                }
              }
            }
          }
        },
        "operationId": "OperationplanBomPriceController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanBomPriceController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanBomPriceController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanBomPrice PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanBomPrice.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanBomPrice>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanBomPricePartial"
              }
            }
          }
        },
        "operationId": "OperationplanBomPriceController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanBomPriceController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanBomPriceController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanBomPrice model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanBomPriceWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanBomPrice.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanBomPriceController.find"
      }
    },
    "/p/operationplan_check/batch": {
      "patch": {
        "x-controller-name": "OperationplanCheckController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanCheckController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanCheck PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanCheckPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanCheckController.update_batch"
      }
    },
    "/p/operationplan_check/count": {
      "get": {
        "x-controller-name": "OperationplanCheckController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanCheckController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanCheck model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanCheck.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanCheck>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanCheckController.count"
      }
    },
    "/p/operationplan_check/{id}": {
      "put": {
        "x-controller-name": "OperationplanCheckController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanCheckController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanCheck PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanCheck"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanCheckController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanCheckController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanCheckController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanCheck PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanCheckPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanCheckController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanCheckController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanCheckController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanCheck model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanCheckWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanCheck.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanCheckController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanCheckController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanCheckController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanCheck DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanCheckController.deleteById"
      }
    },
    "/p/operationplan_check": {
      "post": {
        "x-controller-name": "OperationplanCheckController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanCheckController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanCheck model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanCheck"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanCheck"
                }
              }
            }
          }
        },
        "operationId": "OperationplanCheckController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanCheckController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanCheckController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanCheck PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanCheck.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanCheck>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanCheckPartial"
              }
            }
          }
        },
        "operationId": "OperationplanCheckController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanCheckController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanCheckController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanCheck model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanCheckWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanCheck.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanCheckController.find"
      }
    },
    "/p/operationplan_component/count": {
      "get": {
        "x-controller-name": "OperationplanComponentController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanComponentController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanComponent model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanComponent.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanComponent>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanComponentController.count"
      }
    },
    "/p/operationplan_component/{id}": {
      "put": {
        "x-controller-name": "OperationplanComponentController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanComponentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanComponent PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanComponent"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanComponentController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanComponentController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanComponentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanComponent PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanComponentPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanComponentController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanComponentController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanComponentController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanComponent model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanComponentWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanComponent.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanComponentController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanComponentController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanComponentController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanComponent DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanComponentController.deleteById"
      }
    },
    "/p/operationplan_component": {
      "post": {
        "x-controller-name": "OperationplanComponentController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanComponentController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanComponent model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanComponent"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewOperationplanComponent"
              }
            }
          }
        },
        "operationId": "OperationplanComponentController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanComponentController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanComponentController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanComponent PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanComponent.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanComponent>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanComponentPartial"
              }
            }
          }
        },
        "operationId": "OperationplanComponentController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanComponentController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanComponentController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanComponent model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanComponentWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanComponent.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanComponentController.find"
      }
    },
    "/p/operationplan_defective/batch": {
      "patch": {
        "x-controller-name": "OperationplanDefectiveController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanDefectiveController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanDefective PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanDefectivePartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanDefectiveController.update_batch"
      }
    },
    "/p/operationplan_defective/count": {
      "get": {
        "x-controller-name": "OperationplanDefectiveController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanDefectiveController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanDefective model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanDefective.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanDefective>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanDefectiveController.count"
      }
    },
    "/p/operationplan_defective/{id}": {
      "put": {
        "x-controller-name": "OperationplanDefectiveController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanDefectiveController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanDefective PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanDefective"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanDefectiveController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanDefectiveController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanDefectiveController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanDefective PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanDefectivePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanDefectiveController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanDefectiveController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanDefectiveController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanDefective model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanDefectiveWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanDefective.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanDefectiveController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanDefectiveController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanDefectiveController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanDefective DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanDefectiveController.deleteById"
      }
    },
    "/p/operationplan_defective": {
      "post": {
        "x-controller-name": "OperationplanDefectiveController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanDefectiveController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanDefective model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanDefective"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanDefective"
                }
              }
            }
          }
        },
        "operationId": "OperationplanDefectiveController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanDefectiveController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanDefectiveController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanDefective PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanDefective.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanDefective>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanDefectivePartial"
              }
            }
          }
        },
        "operationId": "OperationplanDefectiveController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanDefectiveController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanDefectiveController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanDefective model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanDefectiveWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanDefective.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanDefectiveController.find"
      }
    },
    "/p/operationplan_finish/batch": {
      "patch": {
        "x-controller-name": "OperationplanFinishController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanFinishController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operation PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanFinishPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanFinishController.update_batch"
      }
    },
    "/p/operationplan_finish/count": {
      "get": {
        "x-controller-name": "OperationplanFinishController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanFinishController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanFinish model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanFinish.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanFinish>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanFinishController.count"
      }
    },
    "/p/operationplan_finish/{id}": {
      "put": {
        "x-controller-name": "OperationplanFinishController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanFinishController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanFinish PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanFinish"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanFinishController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanFinishController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanFinishController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanFinish PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanFinishPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanFinishController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanFinishController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanFinishController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanFinish model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanFinishWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanFinish.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanFinishController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanFinishController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanFinishController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanFinish DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanFinishController.deleteById"
      }
    },
    "/p/operationplan_finish": {
      "post": {
        "x-controller-name": "OperationplanFinishController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanFinishController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanFinish model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanFinish"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanFinish"
                }
              }
            }
          }
        },
        "operationId": "OperationplanFinishController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanFinishController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanFinishController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanFinish PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanFinish.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanFinish>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanFinishPartial"
              }
            }
          }
        },
        "operationId": "OperationplanFinishController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanFinishController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanFinishController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanFinish model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanFinishWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanFinish.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanFinishController.find"
      }
    },
    "/p/operationplan_logs/count": {
      "get": {
        "x-controller-name": "OperationplanLogsController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanLogsController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanLogs model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanLogs.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanLogs>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanLogsController.count"
      }
    },
    "/p/operationplan_logs/{id}": {
      "patch": {
        "x-controller-name": "OperationplanLogsController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanLogsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanLogs PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanLogsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanLogsController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanLogsController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanLogsController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanLogs model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanLogsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanLogs.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanLogsController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanLogsController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanLogsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanLogs DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanLogsController.deleteById"
      }
    },
    "/p/operationplan_logs": {
      "post": {
        "x-controller-name": "OperationplanLogsController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanLogsController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanLogs model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanLogs"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanLogs"
                }
              }
            }
          }
        },
        "operationId": "OperationplanLogsController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanLogsController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanLogsController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanLogs PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanLogs.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanLogs>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanLogsPartial"
              }
            }
          }
        },
        "operationId": "OperationplanLogsController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanLogsController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanLogsController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanLogs model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanLogsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanLogs.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanLogsController.find"
      }
    },
    "/p/operationplan_losg/batch": {
      "patch": {
        "x-controller-name": "OperationplanLogsController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanLogsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanLogs PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanLogsPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanLogsController.update_batch"
      }
    },
    "/p/operationplan_pause/count": {
      "get": {
        "x-controller-name": "OperationplanPauseController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanPauseController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanPause model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanPause.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanPause>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanPauseController.count"
      }
    },
    "/p/operationplan_pause/{id}": {
      "put": {
        "x-controller-name": "OperationplanPauseController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanPauseController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanPause PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanPause"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanPauseController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanPauseController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanPauseController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanPause PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanPausePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanPauseController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanPauseController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanPauseController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanPause model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanPauseWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanPause.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanPauseController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanPauseController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanPauseController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanPause DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanPauseController.deleteById"
      }
    },
    "/p/operationplan_pause": {
      "post": {
        "x-controller-name": "OperationplanPauseController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanPauseController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanPause model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanPause"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewOperationplanPause"
              }
            }
          }
        },
        "operationId": "OperationplanPauseController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanPauseController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanPauseController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanPause PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanPause.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanPause>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanPausePartial"
              }
            }
          }
        },
        "operationId": "OperationplanPauseController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanPauseController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanPauseController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanPause model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanPauseWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanPause.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanPauseController.find"
      }
    },
    "/p/operationplan_qty/batch": {
      "patch": {
        "x-controller-name": "OperationplanQtyController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanQtyController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanQty PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanQtyPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanQtyController.update_batch"
      }
    },
    "/p/operationplan_qty/count": {
      "get": {
        "x-controller-name": "OperationplanQtyController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanQtyController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanQty model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanQty.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanQty>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanQtyController.count"
      }
    },
    "/p/operationplan_qty/{id}": {
      "put": {
        "x-controller-name": "OperationplanQtyController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanQtyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanQty PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanQty"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanQtyController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanQtyController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanQtyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanQty PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanQtyPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanQtyController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanQtyController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanQtyController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanQty model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanQtyWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanQty.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanQtyController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanQtyController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanQtyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanQty DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanQtyController.deleteById"
      }
    },
    "/p/operationplan_qty": {
      "post": {
        "x-controller-name": "OperationplanQtyController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanQtyController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanQty model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanQty"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanQty"
                }
              }
            }
          }
        },
        "operationId": "OperationplanQtyController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanQtyController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanQtyController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanQty PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanQty.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanQty>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanQtyPartial"
              }
            }
          }
        },
        "operationId": "OperationplanQtyController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanQtyController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanQtyController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanQty model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanQtyWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanQty.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanQtyController.find"
      }
    },
    "/p/operationplan_qty_copy/batch": {
      "patch": {
        "x-controller-name": "OperationplanQtyCopyController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanQtyCopyController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanQtyCopy PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanQtyCopyPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanQtyCopyController.update_batch"
      }
    },
    "/p/operationplan_qty_copy/count": {
      "get": {
        "x-controller-name": "OperationplanQtyCopyController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanQtyCopyController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanQtyCopy model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanQtyCopy.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanQtyCopy>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanQtyCopyController.count"
      }
    },
    "/p/operationplan_qty_copy/{id}": {
      "put": {
        "x-controller-name": "OperationplanQtyCopyController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanQtyCopyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanQtyCopy PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanQtyCopy"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanQtyCopyController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanQtyCopyController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanQtyCopyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanQtyCopy PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanQtyCopyPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanQtyCopyController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanQtyCopyController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanQtyCopyController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanQtyCopy model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanQtyCopyWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanQtyCopy.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanQtyCopyController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanQtyCopyController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanQtyCopyController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanQtyCopy DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanQtyCopyController.deleteById"
      }
    },
    "/p/operationplan_qty_copy": {
      "post": {
        "x-controller-name": "OperationplanQtyCopyController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanQtyCopyController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanQtyCopy model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanQtyCopy"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanQtyCopy"
                }
              }
            }
          }
        },
        "operationId": "OperationplanQtyCopyController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanQtyCopyController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanQtyCopyController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanQtyCopy PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanQtyCopy.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanQtyCopy>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanQtyCopyPartial"
              }
            }
          }
        },
        "operationId": "OperationplanQtyCopyController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanQtyCopyController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanQtyCopyController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanQtyCopy model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanQtyCopyWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanQtyCopy.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanQtyCopyController.find"
      }
    },
    "/p/operationplan_temp/batch": {
      "patch": {
        "x-controller-name": "OperationplanTempController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanTempController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanTemp PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanTempPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanTempController.update_batch"
      }
    },
    "/p/operationplan_temp/count": {
      "get": {
        "x-controller-name": "OperationplanTempController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanTempController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanTemp model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanTemp.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanTemp>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanTempController.count"
      }
    },
    "/p/operationplan_temp/{id}": {
      "put": {
        "x-controller-name": "OperationplanTempController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanTempController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanTemp PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanTemp"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanTempController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanTempController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanTempController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanTemp PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanTempPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanTempController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanTempController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanTempController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanTemp model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanTempWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanTemp.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanTempController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanTempController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanTempController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperationplanTemp DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanTempController.deleteById"
      }
    },
    "/p/operationplan_temp": {
      "post": {
        "x-controller-name": "OperationplanTempController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanTempController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanTemp model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanTemp"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanTemp"
                }
              }
            }
          }
        },
        "operationId": "OperationplanTempController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanTempController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanTempController"
        ],
        "responses": {
          "200": {
            "description": "OperationplanTemp PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperationplanTemp.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperationplanTemp>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanTempPartial"
              }
            }
          }
        },
        "operationId": "OperationplanTempController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanTempController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanTempController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperationplanTemp model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanTempWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanTemp.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanTempController.find"
      }
    },
    "/p/operationplanmaterial/batch": {
      "patch": {
        "x-controller-name": "OperationplanmaterialController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanmaterialController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplanmaterial PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanmaterialPartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanmaterialController.update_batch"
      }
    },
    "/p/operationplanmaterial/count": {
      "get": {
        "x-controller-name": "OperationplanmaterialController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationplanmaterial model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationplanmaterial.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationplanmaterial>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanmaterialController.count"
      }
    },
    "/p/operationplanmaterial/{id}": {
      "put": {
        "x-controller-name": "OperationplanmaterialController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanmaterialController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplanmaterial PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Operationplanmaterial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanmaterialController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanmaterialController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanmaterialController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplanmaterial PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanmaterialPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanmaterialController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanmaterialController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationplanmaterial model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanmaterialWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplanmaterial.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanmaterialController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanmaterialController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanmaterialController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplanmaterial DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanmaterialController.deleteById"
      }
    },
    "/p/operationplanmaterial": {
      "post": {
        "x-controller-name": "OperationplanmaterialController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationplanmaterial model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplanmaterial"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanmaterial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanmaterialController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanmaterialController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationplanmaterial PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationplanmaterial.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationplanmaterial>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanmaterialPartial"
              }
            }
          }
        },
        "operationId": "OperationplanmaterialController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanmaterialController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Array of Operationplanmaterial model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanmaterialWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplanmaterial.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanmaterialController.find"
      }
    },
    "/p/operationplanresource/batch": {
      "patch": {
        "x-controller-name": "OperationplanresourceController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationplanresourceController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplanresource PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationplanresourcePartial"
                }
              }
            }
          }
        },
        "operationId": "OperationplanresourceController.update_batch"
      }
    },
    "/p/operationplanresource/count": {
      "get": {
        "x-controller-name": "OperationplanresourceController",
        "x-operation-name": "count",
        "tags": [
          "OperationplanresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationplanresource model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationplanresource.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationplanresource>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanresourceController.count"
      }
    },
    "/p/operationplanresource/{id}": {
      "put": {
        "x-controller-name": "OperationplanresourceController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationplanresourceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplanresource PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Operationplanresource"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanresourceController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationplanresourceController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationplanresourceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplanresource PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanresourcePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanresourceController.updateById"
      },
      "get": {
        "x-controller-name": "OperationplanresourceController",
        "x-operation-name": "findById",
        "tags": [
          "OperationplanresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationplanresource model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationplanresourceWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplanresource.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanresourceController.findById"
      },
      "delete": {
        "x-controller-name": "OperationplanresourceController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationplanresourceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationplanresource DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanresourceController.deleteById"
      }
    },
    "/p/operationplanresource": {
      "post": {
        "x-controller-name": "OperationplanresourceController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationplanresource model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplanresource"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationplanresource"
                }
              }
            }
          }
        },
        "operationId": "OperationplanresourceController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanresourceController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationplanresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationplanresource PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationplanresource.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationplanresource>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanresourcePartial"
              }
            }
          }
        },
        "operationId": "OperationplanresourceController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationplanresourceController",
        "x-operation-name": "find",
        "tags": [
          "OperationplanresourceController"
        ],
        "responses": {
          "200": {
            "description": "Array of Operationplanresource model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationplanresourceWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplanresource.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanresourceController.find"
      }
    },
    "/p/operationplans/{id}/demand": {
      "get": {
        "x-controller-name": "OperationplanDemandController",
        "x-operation-name": "getDemand",
        "tags": [
          "OperationplanDemandController"
        ],
        "responses": {
          "200": {
            "description": "Demand belonging to Operationplan",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Demand"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanDemandController.getDemand"
      }
    },
    "/p/operationplans/{id}/item": {
      "get": {
        "x-controller-name": "OperationplanItemController",
        "x-operation-name": "getItem",
        "tags": [
          "OperationplanItemController"
        ],
        "responses": {
          "200": {
            "description": "Item belonging to Operationplan",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Item"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanItemController.getItem"
      }
    },
    "/p/operationplans/{id}/location": {
      "get": {
        "x-controller-name": "OperationplanLocationController",
        "x-operation-name": "getLocation",
        "tags": [
          "OperationplanLocationController"
        ],
        "responses": {
          "200": {
            "description": "Location belonging to Operationplan",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Location"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanLocationController.getLocation"
      }
    },
    "/p/operationplans/{id}/operation": {
      "get": {
        "x-controller-name": "OperationplanOperationController",
        "x-operation-name": "getOperation",
        "tags": [
          "OperationplanOperationController"
        ],
        "responses": {
          "200": {
            "description": "Operation belonging to Operationplan",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Operation"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanOperationController.getOperation"
      }
    },
    "/p/operationplans/{id}/operationplanmaterial": {
      "post": {
        "x-controller-name": "OperationplanOperationplanmaterialController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanOperationplanmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplanmaterial"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewOperationplanmaterialInOperationplan"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanOperationplanmaterialController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanOperationplanmaterialController",
        "x-operation-name": "patch",
        "tags": [
          "OperationplanOperationplanmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan.Operationplanmaterial PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationplanmaterial.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationplanmaterial>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanmaterialPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanOperationplanmaterialController.patch"
      },
      "get": {
        "x-controller-name": "OperationplanOperationplanmaterialController",
        "x-operation-name": "get",
        "tags": [
          "OperationplanOperationplanmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan has one Operationplanmaterial",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplanmaterial"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "OperationplanOperationplanmaterialController.get"
      },
      "delete": {
        "x-controller-name": "OperationplanOperationplanmaterialController",
        "x-operation-name": "delete",
        "tags": [
          "OperationplanOperationplanmaterialController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan.Operationplanmaterial DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationplanmaterial.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationplanmaterial>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanOperationplanmaterialController.delete"
      }
    },
    "/p/operationplans/{id}/operationplanresource": {
      "post": {
        "x-controller-name": "OperationplanOperationplanresourceController",
        "x-operation-name": "create",
        "tags": [
          "OperationplanOperationplanresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplanresource"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewOperationplanresourceInOperationplan"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanOperationplanresourceController.create"
      },
      "patch": {
        "x-controller-name": "OperationplanOperationplanresourceController",
        "x-operation-name": "patch",
        "tags": [
          "OperationplanOperationplanresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan.Operationplanresource PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationplanresource.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationplanresource>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationplanresourcePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationplanOperationplanresourceController.patch"
      },
      "get": {
        "x-controller-name": "OperationplanOperationplanresourceController",
        "x-operation-name": "get",
        "tags": [
          "OperationplanOperationplanresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan has one Operationplanresource",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationplanresource"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "OperationplanOperationplanresourceController.get"
      },
      "delete": {
        "x-controller-name": "OperationplanOperationplanresourceController",
        "x-operation-name": "delete",
        "tags": [
          "OperationplanOperationplanresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationplan.Operationplanresource DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationplanresource.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationplanresource>"
                }
              }
            }
          }
        ],
        "operationId": "OperationplanOperationplanresourceController.delete"
      }
    },
    "/p/operationplans/{id}/resource": {
      "get": {
        "x-controller-name": "OperationplanResourceController",
        "x-operation-name": "getResource",
        "tags": [
          "OperationplanResourceController"
        ],
        "responses": {
          "200": {
            "description": "Resource belonging to Operationplan",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Resource"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "OperationplanResourceController.getResource"
      }
    },
    "/p/operationresource/batch": {
      "patch": {
        "x-controller-name": "OperationresourceController",
        "x-operation-name": "update_batch",
        "tags": [
          "OperationresourceController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationresource PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OperationresourcePartial"
                }
              }
            }
          }
        },
        "operationId": "OperationresourceController.update_batch"
      }
    },
    "/p/operationresource/count": {
      "get": {
        "x-controller-name": "OperationresourceController",
        "x-operation-name": "count",
        "tags": [
          "OperationresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationresource model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationresource.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationresource>"
                }
              }
            }
          }
        ],
        "operationId": "OperationresourceController.count"
      }
    },
    "/p/operationresource/{id}": {
      "put": {
        "x-controller-name": "OperationresourceController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperationresourceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationresource PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Operationresource"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationresourceController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperationresourceController",
        "x-operation-name": "updateById",
        "tags": [
          "OperationresourceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationresource PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationresourcePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperationresourceController.updateById"
      },
      "get": {
        "x-controller-name": "OperationresourceController",
        "x-operation-name": "findById",
        "tags": [
          "OperationresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationresource model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperationresourceWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationresource.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationresourceController.findById"
      },
      "delete": {
        "x-controller-name": "OperationresourceController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperationresourceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Operationresource DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperationresourceController.deleteById"
      }
    },
    "/p/operationresource": {
      "post": {
        "x-controller-name": "OperationresourceController",
        "x-operation-name": "create",
        "tags": [
          "OperationresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationresource model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationresource"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOperationresource"
                }
              }
            }
          }
        },
        "operationId": "OperationresourceController.create"
      },
      "patch": {
        "x-controller-name": "OperationresourceController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperationresourceController"
        ],
        "responses": {
          "200": {
            "description": "Operationresource PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Operationresource.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Operationresource>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperationresourcePartial"
              }
            }
          }
        },
        "operationId": "OperationresourceController.updateAll"
      },
      "get": {
        "x-controller-name": "OperationresourceController",
        "x-operation-name": "find",
        "tags": [
          "OperationresourceController"
        ],
        "responses": {
          "200": {
            "description": "Array of Operationresource model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperationresourceWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Operationresource.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperationresourceController.find"
      }
    },
    "/p/operations/{id}/item": {
      "get": {
        "x-controller-name": "OperationItemController",
        "x-operation-name": "getItem",
        "tags": [
          "OperationItemController"
        ],
        "responses": {
          "200": {
            "description": "Item belonging to Operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Item"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "OperationItemController.getItem"
      }
    },
    "/p/operations/{id}/location": {
      "get": {
        "x-controller-name": "OperationLocationController",
        "x-operation-name": "getLocation",
        "tags": [
          "OperationLocationController"
        ],
        "responses": {
          "200": {
            "description": "Location belonging to Operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Location"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "OperationLocationController.getLocation"
      }
    },
    "/p/out_constraint/batch": {
      "patch": {
        "x-controller-name": "OutConstraintController",
        "x-operation-name": "update_batch",
        "tags": [
          "OutConstraintController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutConstraint PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OutConstraintPartial"
                }
              }
            }
          }
        },
        "operationId": "OutConstraintController.update_batch"
      }
    },
    "/p/out_constraint/count": {
      "get": {
        "x-controller-name": "OutConstraintController",
        "x-operation-name": "count",
        "tags": [
          "OutConstraintController"
        ],
        "responses": {
          "200": {
            "description": "OutConstraint model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OutConstraint.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OutConstraint>"
                }
              }
            }
          }
        ],
        "operationId": "OutConstraintController.count"
      }
    },
    "/p/out_constraint/{id}": {
      "put": {
        "x-controller-name": "OutConstraintController",
        "x-operation-name": "replaceById",
        "tags": [
          "OutConstraintController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutConstraint PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OutConstraint"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OutConstraintController.replaceById"
      },
      "patch": {
        "x-controller-name": "OutConstraintController",
        "x-operation-name": "updateById",
        "tags": [
          "OutConstraintController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutConstraint PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OutConstraintPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OutConstraintController.updateById"
      },
      "get": {
        "x-controller-name": "OutConstraintController",
        "x-operation-name": "findById",
        "tags": [
          "OutConstraintController"
        ],
        "responses": {
          "200": {
            "description": "OutConstraint model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutConstraintWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutConstraint.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OutConstraintController.findById"
      },
      "delete": {
        "x-controller-name": "OutConstraintController",
        "x-operation-name": "deleteById",
        "tags": [
          "OutConstraintController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutConstraint DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OutConstraintController.deleteById"
      }
    },
    "/p/out_constraint": {
      "post": {
        "x-controller-name": "OutConstraintController",
        "x-operation-name": "create",
        "tags": [
          "OutConstraintController"
        ],
        "responses": {
          "200": {
            "description": "OutConstraint model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutConstraint"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOutConstraint"
                }
              }
            }
          }
        },
        "operationId": "OutConstraintController.create"
      },
      "patch": {
        "x-controller-name": "OutConstraintController",
        "x-operation-name": "updateAll",
        "tags": [
          "OutConstraintController"
        ],
        "responses": {
          "200": {
            "description": "OutConstraint PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OutConstraint.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OutConstraint>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OutConstraintPartial"
              }
            }
          }
        },
        "operationId": "OutConstraintController.updateAll"
      },
      "get": {
        "x-controller-name": "OutConstraintController",
        "x-operation-name": "find",
        "tags": [
          "OutConstraintController"
        ],
        "responses": {
          "200": {
            "description": "Array of OutConstraint model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OutConstraintWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutConstraint.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OutConstraintController.find"
      }
    },
    "/p/out_problem/batch": {
      "patch": {
        "x-controller-name": "OutProblemController",
        "x-operation-name": "update_batch",
        "tags": [
          "OutProblemController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutProblem PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OutProblemPartial"
                }
              }
            }
          }
        },
        "operationId": "OutProblemController.update_batch"
      }
    },
    "/p/out_problem/count": {
      "get": {
        "x-controller-name": "OutProblemController",
        "x-operation-name": "count",
        "tags": [
          "OutProblemController"
        ],
        "responses": {
          "200": {
            "description": "OutProblem model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OutProblem.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OutProblem>"
                }
              }
            }
          }
        ],
        "operationId": "OutProblemController.count"
      }
    },
    "/p/out_problem/{id}": {
      "put": {
        "x-controller-name": "OutProblemController",
        "x-operation-name": "replaceById",
        "tags": [
          "OutProblemController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutProblem PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OutProblem"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OutProblemController.replaceById"
      },
      "patch": {
        "x-controller-name": "OutProblemController",
        "x-operation-name": "updateById",
        "tags": [
          "OutProblemController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutProblem PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OutProblemPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OutProblemController.updateById"
      },
      "get": {
        "x-controller-name": "OutProblemController",
        "x-operation-name": "findById",
        "tags": [
          "OutProblemController"
        ],
        "responses": {
          "200": {
            "description": "OutProblem model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutProblemWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutProblem.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OutProblemController.findById"
      },
      "delete": {
        "x-controller-name": "OutProblemController",
        "x-operation-name": "deleteById",
        "tags": [
          "OutProblemController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutProblem DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OutProblemController.deleteById"
      }
    },
    "/p/out_problem": {
      "post": {
        "x-controller-name": "OutProblemController",
        "x-operation-name": "create",
        "tags": [
          "OutProblemController"
        ],
        "responses": {
          "200": {
            "description": "OutProblem model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutProblem"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOutProblem"
                }
              }
            }
          }
        },
        "operationId": "OutProblemController.create"
      },
      "patch": {
        "x-controller-name": "OutProblemController",
        "x-operation-name": "updateAll",
        "tags": [
          "OutProblemController"
        ],
        "responses": {
          "200": {
            "description": "OutProblem PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OutProblem.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OutProblem>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OutProblemPartial"
              }
            }
          }
        },
        "operationId": "OutProblemController.updateAll"
      },
      "get": {
        "x-controller-name": "OutProblemController",
        "x-operation-name": "find",
        "tags": [
          "OutProblemController"
        ],
        "responses": {
          "200": {
            "description": "Array of OutProblem model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OutProblemWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutProblem.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OutProblemController.find"
      }
    },
    "/p/out_resourceplan/batch": {
      "patch": {
        "x-controller-name": "OutResourceplanController",
        "x-operation-name": "update_batch",
        "tags": [
          "OutResourceplanController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutResourceplan PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/OutResourceplanPartial"
                }
              }
            }
          }
        },
        "operationId": "OutResourceplanController.update_batch"
      }
    },
    "/p/out_resourceplan/count": {
      "get": {
        "x-controller-name": "OutResourceplanController",
        "x-operation-name": "count",
        "tags": [
          "OutResourceplanController"
        ],
        "responses": {
          "200": {
            "description": "OutResourceplan model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OutResourceplan.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OutResourceplan>"
                }
              }
            }
          }
        ],
        "operationId": "OutResourceplanController.count"
      }
    },
    "/p/out_resourceplan/{id}": {
      "put": {
        "x-controller-name": "OutResourceplanController",
        "x-operation-name": "replaceById",
        "tags": [
          "OutResourceplanController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutResourceplan PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OutResourceplan"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OutResourceplanController.replaceById"
      },
      "patch": {
        "x-controller-name": "OutResourceplanController",
        "x-operation-name": "updateById",
        "tags": [
          "OutResourceplanController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutResourceplan PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OutResourceplanPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OutResourceplanController.updateById"
      },
      "get": {
        "x-controller-name": "OutResourceplanController",
        "x-operation-name": "findById",
        "tags": [
          "OutResourceplanController"
        ],
        "responses": {
          "200": {
            "description": "OutResourceplan model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutResourceplanWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutResourceplan.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OutResourceplanController.findById"
      },
      "delete": {
        "x-controller-name": "OutResourceplanController",
        "x-operation-name": "deleteById",
        "tags": [
          "OutResourceplanController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OutResourceplan DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OutResourceplanController.deleteById"
      }
    },
    "/p/out_resourceplan": {
      "post": {
        "x-controller-name": "OutResourceplanController",
        "x-operation-name": "create",
        "tags": [
          "OutResourceplanController"
        ],
        "responses": {
          "200": {
            "description": "OutResourceplan model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutResourceplan"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewOutResourceplan"
                }
              }
            }
          }
        },
        "operationId": "OutResourceplanController.create"
      },
      "patch": {
        "x-controller-name": "OutResourceplanController",
        "x-operation-name": "updateAll",
        "tags": [
          "OutResourceplanController"
        ],
        "responses": {
          "200": {
            "description": "OutResourceplan PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OutResourceplan.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OutResourceplan>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OutResourceplanPartial"
              }
            }
          }
        },
        "operationId": "OutResourceplanController.updateAll"
      },
      "get": {
        "x-controller-name": "OutResourceplanController",
        "x-operation-name": "find",
        "tags": [
          "OutResourceplanController"
        ],
        "responses": {
          "200": {
            "description": "Array of OutResourceplan model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OutResourceplanWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OutResourceplan.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OutResourceplanController.find"
      }
    },
    "/p/pg_stat_statements/count": {
      "get": {
        "x-controller-name": "PgStatStatementsController",
        "x-operation-name": "count",
        "tags": [
          "PgStatStatementsController"
        ],
        "responses": {
          "200": {
            "description": "PgStatStatements model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "PgStatStatements.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<PgStatStatements>"
                }
              }
            }
          }
        ],
        "operationId": "PgStatStatementsController.count"
      }
    },
    "/p/pg_stat_statements/{id}": {
      "put": {
        "x-controller-name": "PgStatStatementsController",
        "x-operation-name": "replaceById",
        "tags": [
          "PgStatStatementsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "PgStatStatements PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PgStatStatements"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "PgStatStatementsController.replaceById"
      },
      "patch": {
        "x-controller-name": "PgStatStatementsController",
        "x-operation-name": "updateById",
        "tags": [
          "PgStatStatementsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "PgStatStatements PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PgStatStatementsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "PgStatStatementsController.updateById"
      },
      "get": {
        "x-controller-name": "PgStatStatementsController",
        "x-operation-name": "findById",
        "tags": [
          "PgStatStatementsController"
        ],
        "responses": {
          "200": {
            "description": "PgStatStatements model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PgStatStatementsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PgStatStatements.Filter"
                }
              }
            }
          }
        ],
        "operationId": "PgStatStatementsController.findById"
      },
      "delete": {
        "x-controller-name": "PgStatStatementsController",
        "x-operation-name": "deleteById",
        "tags": [
          "PgStatStatementsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "PgStatStatements DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "PgStatStatementsController.deleteById"
      }
    },
    "/p/pg_stat_statements": {
      "post": {
        "x-controller-name": "PgStatStatementsController",
        "x-operation-name": "create",
        "tags": [
          "PgStatStatementsController"
        ],
        "responses": {
          "200": {
            "description": "PgStatStatements model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PgStatStatements"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewPgStatStatements"
              }
            }
          }
        },
        "operationId": "PgStatStatementsController.create"
      },
      "patch": {
        "x-controller-name": "PgStatStatementsController",
        "x-operation-name": "updateAll",
        "tags": [
          "PgStatStatementsController"
        ],
        "responses": {
          "200": {
            "description": "PgStatStatements PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "PgStatStatements.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<PgStatStatements>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PgStatStatementsPartial"
              }
            }
          }
        },
        "operationId": "PgStatStatementsController.updateAll"
      },
      "get": {
        "x-controller-name": "PgStatStatementsController",
        "x-operation-name": "find",
        "tags": [
          "PgStatStatementsController"
        ],
        "responses": {
          "200": {
            "description": "Array of PgStatStatements model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/PgStatStatementsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PgStatStatements.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "PgStatStatementsController.find"
      }
    },
    "/p/pg_stat_statements_info/count": {
      "get": {
        "x-controller-name": "PgStatStatementsInfoController",
        "x-operation-name": "count",
        "tags": [
          "PgStatStatementsInfoController"
        ],
        "responses": {
          "200": {
            "description": "PgStatStatementsInfo model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "PgStatStatementsInfo.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<PgStatStatementsInfo>"
                }
              }
            }
          }
        ],
        "operationId": "PgStatStatementsInfoController.count"
      }
    },
    "/p/pg_stat_statements_info/{id}": {
      "put": {
        "x-controller-name": "PgStatStatementsInfoController",
        "x-operation-name": "replaceById",
        "tags": [
          "PgStatStatementsInfoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "PgStatStatementsInfo PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PgStatStatementsInfo"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "PgStatStatementsInfoController.replaceById"
      },
      "patch": {
        "x-controller-name": "PgStatStatementsInfoController",
        "x-operation-name": "updateById",
        "tags": [
          "PgStatStatementsInfoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "PgStatStatementsInfo PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PgStatStatementsInfoPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "PgStatStatementsInfoController.updateById"
      },
      "get": {
        "x-controller-name": "PgStatStatementsInfoController",
        "x-operation-name": "findById",
        "tags": [
          "PgStatStatementsInfoController"
        ],
        "responses": {
          "200": {
            "description": "PgStatStatementsInfo model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PgStatStatementsInfoWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PgStatStatementsInfo.Filter"
                }
              }
            }
          }
        ],
        "operationId": "PgStatStatementsInfoController.findById"
      },
      "delete": {
        "x-controller-name": "PgStatStatementsInfoController",
        "x-operation-name": "deleteById",
        "tags": [
          "PgStatStatementsInfoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "PgStatStatementsInfo DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "PgStatStatementsInfoController.deleteById"
      }
    },
    "/p/pg_stat_statements_info": {
      "post": {
        "x-controller-name": "PgStatStatementsInfoController",
        "x-operation-name": "create",
        "tags": [
          "PgStatStatementsInfoController"
        ],
        "responses": {
          "200": {
            "description": "PgStatStatementsInfo model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PgStatStatementsInfo"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewPgStatStatementsInfo"
              }
            }
          }
        },
        "operationId": "PgStatStatementsInfoController.create"
      },
      "patch": {
        "x-controller-name": "PgStatStatementsInfoController",
        "x-operation-name": "updateAll",
        "tags": [
          "PgStatStatementsInfoController"
        ],
        "responses": {
          "200": {
            "description": "PgStatStatementsInfo PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "PgStatStatementsInfo.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<PgStatStatementsInfo>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PgStatStatementsInfoPartial"
              }
            }
          }
        },
        "operationId": "PgStatStatementsInfoController.updateAll"
      },
      "get": {
        "x-controller-name": "PgStatStatementsInfoController",
        "x-operation-name": "find",
        "tags": [
          "PgStatStatementsInfoController"
        ],
        "responses": {
          "200": {
            "description": "Array of PgStatStatementsInfo model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/PgStatStatementsInfoWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PgStatStatementsInfo.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "PgStatStatementsInfoController.find"
      }
    },
    "/p/ping": {
      "get": {
        "x-controller-name": "PingController",
        "x-operation-name": "ping",
        "tags": [
          "PingController"
        ],
        "responses": {
          "200": {
            "description": "Ping Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PingResponse"
                }
              }
            }
          }
        },
        "operationId": "PingController.ping"
      }
    },
    "/p/postgresql/{sql}": {
      "get": {
        "x-controller-name": "PostgreSqlController",
        "x-operation-name": "sql",
        "tags": [
          "PostgreSqlController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Execute postgresql success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sql",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "PostgreSqlController.sql"
      }
    },
    "/p/postgresql_old/{sql}": {
      "get": {
        "x-controller-name": "PostgreSqlController",
        "x-operation-name": "sql_old",
        "tags": [
          "PostgreSqlController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Execute postgresql success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "sql",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "PostgreSqlController.sql_old"
      }
    },
    "/p/reportmanager_column/batch": {
      "patch": {
        "x-controller-name": "ReportmanagerColumnController",
        "x-operation-name": "update_batch",
        "tags": [
          "ReportmanagerColumnController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ReportmanagerColumn PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ReportmanagerColumnPartial"
                }
              }
            }
          }
        },
        "operationId": "ReportmanagerColumnController.update_batch"
      }
    },
    "/p/reportmanager_column/count": {
      "get": {
        "x-controller-name": "ReportmanagerColumnController",
        "x-operation-name": "count",
        "tags": [
          "ReportmanagerColumnController"
        ],
        "responses": {
          "200": {
            "description": "ReportmanagerColumn model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "ReportmanagerColumn.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<ReportmanagerColumn>"
                }
              }
            }
          }
        ],
        "operationId": "ReportmanagerColumnController.count"
      }
    },
    "/p/reportmanager_column/{id}": {
      "put": {
        "x-controller-name": "ReportmanagerColumnController",
        "x-operation-name": "replaceById",
        "tags": [
          "ReportmanagerColumnController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ReportmanagerColumn PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ReportmanagerColumn"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ReportmanagerColumnController.replaceById"
      },
      "patch": {
        "x-controller-name": "ReportmanagerColumnController",
        "x-operation-name": "updateById",
        "tags": [
          "ReportmanagerColumnController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ReportmanagerColumn PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ReportmanagerColumnPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ReportmanagerColumnController.updateById"
      },
      "get": {
        "x-controller-name": "ReportmanagerColumnController",
        "x-operation-name": "findById",
        "tags": [
          "ReportmanagerColumnController"
        ],
        "responses": {
          "200": {
            "description": "ReportmanagerColumn model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReportmanagerColumnWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReportmanagerColumn.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ReportmanagerColumnController.findById"
      },
      "delete": {
        "x-controller-name": "ReportmanagerColumnController",
        "x-operation-name": "deleteById",
        "tags": [
          "ReportmanagerColumnController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ReportmanagerColumn DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ReportmanagerColumnController.deleteById"
      }
    },
    "/p/reportmanager_column": {
      "post": {
        "x-controller-name": "ReportmanagerColumnController",
        "x-operation-name": "create",
        "tags": [
          "ReportmanagerColumnController"
        ],
        "responses": {
          "200": {
            "description": "ReportmanagerColumn model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReportmanagerColumn"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewReportmanagerColumn"
                }
              }
            }
          }
        },
        "operationId": "ReportmanagerColumnController.create"
      },
      "patch": {
        "x-controller-name": "ReportmanagerColumnController",
        "x-operation-name": "updateAll",
        "tags": [
          "ReportmanagerColumnController"
        ],
        "responses": {
          "200": {
            "description": "ReportmanagerColumn PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "ReportmanagerColumn.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<ReportmanagerColumn>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ReportmanagerColumnPartial"
              }
            }
          }
        },
        "operationId": "ReportmanagerColumnController.updateAll"
      },
      "get": {
        "x-controller-name": "ReportmanagerColumnController",
        "x-operation-name": "find",
        "tags": [
          "ReportmanagerColumnController"
        ],
        "responses": {
          "200": {
            "description": "Array of ReportmanagerColumn model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ReportmanagerColumnWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReportmanagerColumn.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ReportmanagerColumnController.find"
      }
    },
    "/p/reportmanager_report/batch": {
      "patch": {
        "x-controller-name": "ReportmanagerReportController",
        "x-operation-name": "update_batch",
        "tags": [
          "ReportmanagerReportController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ReportmanagerReport PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ReportmanagerReportPartial"
                }
              }
            }
          }
        },
        "operationId": "ReportmanagerReportController.update_batch"
      }
    },
    "/p/reportmanager_report/count": {
      "get": {
        "x-controller-name": "ReportmanagerReportController",
        "x-operation-name": "count",
        "tags": [
          "ReportmanagerReportController"
        ],
        "responses": {
          "200": {
            "description": "ReportmanagerReport model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "ReportmanagerReport.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<ReportmanagerReport>"
                }
              }
            }
          }
        ],
        "operationId": "ReportmanagerReportController.count"
      }
    },
    "/p/reportmanager_report/{id}": {
      "put": {
        "x-controller-name": "ReportmanagerReportController",
        "x-operation-name": "replaceById",
        "tags": [
          "ReportmanagerReportController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ReportmanagerReport PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ReportmanagerReport"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ReportmanagerReportController.replaceById"
      },
      "patch": {
        "x-controller-name": "ReportmanagerReportController",
        "x-operation-name": "updateById",
        "tags": [
          "ReportmanagerReportController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ReportmanagerReport PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ReportmanagerReportPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ReportmanagerReportController.updateById"
      },
      "get": {
        "x-controller-name": "ReportmanagerReportController",
        "x-operation-name": "findById",
        "tags": [
          "ReportmanagerReportController"
        ],
        "responses": {
          "200": {
            "description": "ReportmanagerReport model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReportmanagerReportWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReportmanagerReport.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ReportmanagerReportController.findById"
      },
      "delete": {
        "x-controller-name": "ReportmanagerReportController",
        "x-operation-name": "deleteById",
        "tags": [
          "ReportmanagerReportController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ReportmanagerReport DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ReportmanagerReportController.deleteById"
      }
    },
    "/p/reportmanager_report": {
      "post": {
        "x-controller-name": "ReportmanagerReportController",
        "x-operation-name": "create",
        "tags": [
          "ReportmanagerReportController"
        ],
        "responses": {
          "200": {
            "description": "ReportmanagerReport model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReportmanagerReport"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewReportmanagerReport"
                }
              }
            }
          }
        },
        "operationId": "ReportmanagerReportController.create"
      },
      "patch": {
        "x-controller-name": "ReportmanagerReportController",
        "x-operation-name": "updateAll",
        "tags": [
          "ReportmanagerReportController"
        ],
        "responses": {
          "200": {
            "description": "ReportmanagerReport PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "ReportmanagerReport.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<ReportmanagerReport>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ReportmanagerReportPartial"
              }
            }
          }
        },
        "operationId": "ReportmanagerReportController.updateAll"
      },
      "get": {
        "x-controller-name": "ReportmanagerReportController",
        "x-operation-name": "find",
        "tags": [
          "ReportmanagerReportController"
        ],
        "responses": {
          "200": {
            "description": "Array of ReportmanagerReport model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ReportmanagerReportWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReportmanagerReport.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ReportmanagerReportController.find"
      }
    },
    "/p/resource/batch": {
      "patch": {
        "x-controller-name": "ResourceController",
        "x-operation-name": "update_batch",
        "tags": [
          "ResourceController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Resource PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ResourcePartial"
                }
              }
            }
          }
        },
        "operationId": "ResourceController.update_batch"
      }
    },
    "/p/resource/count": {
      "get": {
        "x-controller-name": "ResourceController",
        "x-operation-name": "count",
        "tags": [
          "ResourceController"
        ],
        "responses": {
          "200": {
            "description": "Resource model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Resource.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Resource>"
                }
              }
            }
          }
        ],
        "operationId": "ResourceController.count"
      }
    },
    "/p/resource/{id}": {
      "put": {
        "x-controller-name": "ResourceController",
        "x-operation-name": "replaceById",
        "tags": [
          "ResourceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Resource PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Resource"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ResourceController.replaceById"
      },
      "patch": {
        "x-controller-name": "ResourceController",
        "x-operation-name": "updateById",
        "tags": [
          "ResourceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Resource PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResourcePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ResourceController.updateById"
      },
      "get": {
        "x-controller-name": "ResourceController",
        "x-operation-name": "findById",
        "tags": [
          "ResourceController"
        ],
        "responses": {
          "200": {
            "description": "Resource model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResourceWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Resource.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ResourceController.findById"
      },
      "delete": {
        "x-controller-name": "ResourceController",
        "x-operation-name": "deleteById",
        "tags": [
          "ResourceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Resource DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "ResourceController.deleteById"
      }
    },
    "/p/resource": {
      "post": {
        "x-controller-name": "ResourceController",
        "x-operation-name": "create",
        "tags": [
          "ResourceController"
        ],
        "responses": {
          "200": {
            "description": "Resource model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Resource"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewResource"
                }
              }
            }
          }
        },
        "operationId": "ResourceController.create"
      },
      "patch": {
        "x-controller-name": "ResourceController",
        "x-operation-name": "updateAll",
        "tags": [
          "ResourceController"
        ],
        "responses": {
          "200": {
            "description": "Resource PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Resource.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Resource>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResourcePartial"
              }
            }
          }
        },
        "operationId": "ResourceController.updateAll"
      },
      "get": {
        "x-controller-name": "ResourceController",
        "x-operation-name": "find",
        "tags": [
          "ResourceController"
        ],
        "responses": {
          "200": {
            "description": "Array of Resource model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ResourceWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Resource.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ResourceController.find"
      }
    },
    "/p/resourceskill/batch": {
      "patch": {
        "x-controller-name": "ResourceskillController",
        "x-operation-name": "update_batch",
        "tags": [
          "ResourceskillController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Resourceskill PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/ResourceskillPartial"
                }
              }
            }
          }
        },
        "operationId": "ResourceskillController.update_batch"
      }
    },
    "/p/resourceskill/count": {
      "get": {
        "x-controller-name": "ResourceskillController",
        "x-operation-name": "count",
        "tags": [
          "ResourceskillController"
        ],
        "responses": {
          "200": {
            "description": "Resourceskill model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Resourceskill.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Resourceskill>"
                }
              }
            }
          }
        ],
        "operationId": "ResourceskillController.count"
      }
    },
    "/p/resourceskill/{id}": {
      "put": {
        "x-controller-name": "ResourceskillController",
        "x-operation-name": "replaceById",
        "tags": [
          "ResourceskillController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Resourceskill PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Resourceskill"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ResourceskillController.replaceById"
      },
      "patch": {
        "x-controller-name": "ResourceskillController",
        "x-operation-name": "updateById",
        "tags": [
          "ResourceskillController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Resourceskill PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResourceskillPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ResourceskillController.updateById"
      },
      "get": {
        "x-controller-name": "ResourceskillController",
        "x-operation-name": "findById",
        "tags": [
          "ResourceskillController"
        ],
        "responses": {
          "200": {
            "description": "Resourceskill model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResourceskillWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Resourceskill.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ResourceskillController.findById"
      },
      "delete": {
        "x-controller-name": "ResourceskillController",
        "x-operation-name": "deleteById",
        "tags": [
          "ResourceskillController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Resourceskill DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ResourceskillController.deleteById"
      }
    },
    "/p/resourceskill": {
      "post": {
        "x-controller-name": "ResourceskillController",
        "x-operation-name": "create",
        "tags": [
          "ResourceskillController"
        ],
        "responses": {
          "200": {
            "description": "Resourceskill model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Resourceskill"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewResourceskill"
                }
              }
            }
          }
        },
        "operationId": "ResourceskillController.create"
      },
      "patch": {
        "x-controller-name": "ResourceskillController",
        "x-operation-name": "updateAll",
        "tags": [
          "ResourceskillController"
        ],
        "responses": {
          "200": {
            "description": "Resourceskill PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Resourceskill.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Resourceskill>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResourceskillPartial"
              }
            }
          }
        },
        "operationId": "ResourceskillController.updateAll"
      },
      "get": {
        "x-controller-name": "ResourceskillController",
        "x-operation-name": "find",
        "tags": [
          "ResourceskillController"
        ],
        "responses": {
          "200": {
            "description": "Array of Resourceskill model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ResourceskillWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Resourceskill.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ResourceskillController.find"
      }
    },
    "/p/setupmatrix/batch": {
      "patch": {
        "x-controller-name": "SetupmatrixController",
        "x-operation-name": "update_batch",
        "tags": [
          "SetupmatrixController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Setupmatrix PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/SetupmatrixPartial"
                }
              }
            }
          }
        },
        "operationId": "SetupmatrixController.update_batch"
      }
    },
    "/p/setupmatrix/count": {
      "get": {
        "x-controller-name": "SetupmatrixController",
        "x-operation-name": "count",
        "tags": [
          "SetupmatrixController"
        ],
        "responses": {
          "200": {
            "description": "Setupmatrix model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Setupmatrix.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Setupmatrix>"
                }
              }
            }
          }
        ],
        "operationId": "SetupmatrixController.count"
      }
    },
    "/p/setupmatrix/{id}": {
      "put": {
        "x-controller-name": "SetupmatrixController",
        "x-operation-name": "replaceById",
        "tags": [
          "SetupmatrixController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Setupmatrix PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Setupmatrix"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SetupmatrixController.replaceById"
      },
      "patch": {
        "x-controller-name": "SetupmatrixController",
        "x-operation-name": "updateById",
        "tags": [
          "SetupmatrixController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Setupmatrix PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SetupmatrixPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SetupmatrixController.updateById"
      },
      "get": {
        "x-controller-name": "SetupmatrixController",
        "x-operation-name": "findById",
        "tags": [
          "SetupmatrixController"
        ],
        "responses": {
          "200": {
            "description": "Setupmatrix model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SetupmatrixWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Setupmatrix.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SetupmatrixController.findById"
      },
      "delete": {
        "x-controller-name": "SetupmatrixController",
        "x-operation-name": "deleteById",
        "tags": [
          "SetupmatrixController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Setupmatrix DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "SetupmatrixController.deleteById"
      }
    },
    "/p/setupmatrix": {
      "post": {
        "x-controller-name": "SetupmatrixController",
        "x-operation-name": "create",
        "tags": [
          "SetupmatrixController"
        ],
        "responses": {
          "200": {
            "description": "Setupmatrix model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Setupmatrix"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewSetupmatrix"
                }
              }
            }
          }
        },
        "operationId": "SetupmatrixController.create"
      },
      "patch": {
        "x-controller-name": "SetupmatrixController",
        "x-operation-name": "updateAll",
        "tags": [
          "SetupmatrixController"
        ],
        "responses": {
          "200": {
            "description": "Setupmatrix PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Setupmatrix.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Setupmatrix>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SetupmatrixPartial"
              }
            }
          }
        },
        "operationId": "SetupmatrixController.updateAll"
      },
      "get": {
        "x-controller-name": "SetupmatrixController",
        "x-operation-name": "find",
        "tags": [
          "SetupmatrixController"
        ],
        "responses": {
          "200": {
            "description": "Array of Setupmatrix model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SetupmatrixWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Setupmatrix.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SetupmatrixController.find"
      }
    },
    "/p/setuprule/batch": {
      "patch": {
        "x-controller-name": "SetupruleController",
        "x-operation-name": "update_batch",
        "tags": [
          "SetupruleController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Setuprule PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/SetuprulePartial"
                }
              }
            }
          }
        },
        "operationId": "SetupruleController.update_batch"
      }
    },
    "/p/setuprule/count": {
      "get": {
        "x-controller-name": "SetupruleController",
        "x-operation-name": "count",
        "tags": [
          "SetupruleController"
        ],
        "responses": {
          "200": {
            "description": "Setuprule model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Setuprule.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Setuprule>"
                }
              }
            }
          }
        ],
        "operationId": "SetupruleController.count"
      }
    },
    "/p/setuprule/{id}": {
      "put": {
        "x-controller-name": "SetupruleController",
        "x-operation-name": "replaceById",
        "tags": [
          "SetupruleController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Setuprule PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Setuprule"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SetupruleController.replaceById"
      },
      "patch": {
        "x-controller-name": "SetupruleController",
        "x-operation-name": "updateById",
        "tags": [
          "SetupruleController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Setuprule PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SetuprulePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SetupruleController.updateById"
      },
      "get": {
        "x-controller-name": "SetupruleController",
        "x-operation-name": "findById",
        "tags": [
          "SetupruleController"
        ],
        "responses": {
          "200": {
            "description": "Setuprule model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SetupruleWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Setuprule.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SetupruleController.findById"
      },
      "delete": {
        "x-controller-name": "SetupruleController",
        "x-operation-name": "deleteById",
        "tags": [
          "SetupruleController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Setuprule DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "SetupruleController.deleteById"
      }
    },
    "/p/setuprule": {
      "post": {
        "x-controller-name": "SetupruleController",
        "x-operation-name": "create",
        "tags": [
          "SetupruleController"
        ],
        "responses": {
          "200": {
            "description": "Setuprule model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Setuprule"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewSetuprule"
                }
              }
            }
          }
        },
        "operationId": "SetupruleController.create"
      },
      "patch": {
        "x-controller-name": "SetupruleController",
        "x-operation-name": "updateAll",
        "tags": [
          "SetupruleController"
        ],
        "responses": {
          "200": {
            "description": "Setuprule PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Setuprule.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Setuprule>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SetuprulePartial"
              }
            }
          }
        },
        "operationId": "SetupruleController.updateAll"
      },
      "get": {
        "x-controller-name": "SetupruleController",
        "x-operation-name": "find",
        "tags": [
          "SetupruleController"
        ],
        "responses": {
          "200": {
            "description": "Array of Setuprule model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SetupruleWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Setuprule.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SetupruleController.find"
      }
    },
    "/p/skill/batch": {
      "patch": {
        "x-controller-name": "SkillController",
        "x-operation-name": "update_batch",
        "tags": [
          "SkillController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Skill PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/SkillPartial"
                }
              }
            }
          }
        },
        "operationId": "SkillController.update_batch"
      }
    },
    "/p/skill/count": {
      "get": {
        "x-controller-name": "SkillController",
        "x-operation-name": "count",
        "tags": [
          "SkillController"
        ],
        "responses": {
          "200": {
            "description": "Skill model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Skill.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Skill>"
                }
              }
            }
          }
        ],
        "operationId": "SkillController.count"
      }
    },
    "/p/skill/{id}": {
      "put": {
        "x-controller-name": "SkillController",
        "x-operation-name": "replaceById",
        "tags": [
          "SkillController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Skill PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Skill"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SkillController.replaceById"
      },
      "patch": {
        "x-controller-name": "SkillController",
        "x-operation-name": "updateById",
        "tags": [
          "SkillController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Skill PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SkillPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SkillController.updateById"
      },
      "get": {
        "x-controller-name": "SkillController",
        "x-operation-name": "findById",
        "tags": [
          "SkillController"
        ],
        "responses": {
          "200": {
            "description": "Skill model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SkillWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Skill.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SkillController.findById"
      },
      "delete": {
        "x-controller-name": "SkillController",
        "x-operation-name": "deleteById",
        "tags": [
          "SkillController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Skill DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "SkillController.deleteById"
      }
    },
    "/p/skill": {
      "post": {
        "x-controller-name": "SkillController",
        "x-operation-name": "create",
        "tags": [
          "SkillController"
        ],
        "responses": {
          "200": {
            "description": "Skill model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Skill"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewSkill"
                }
              }
            }
          }
        },
        "operationId": "SkillController.create"
      },
      "patch": {
        "x-controller-name": "SkillController",
        "x-operation-name": "updateAll",
        "tags": [
          "SkillController"
        ],
        "responses": {
          "200": {
            "description": "Skill PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Skill.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Skill>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SkillPartial"
              }
            }
          }
        },
        "operationId": "SkillController.updateAll"
      },
      "get": {
        "x-controller-name": "SkillController",
        "x-operation-name": "find",
        "tags": [
          "SkillController"
        ],
        "responses": {
          "200": {
            "description": "Array of Skill model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SkillWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Skill.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SkillController.find"
      }
    },
    "/p/suboperation/batch": {
      "patch": {
        "x-controller-name": "SuboperationController",
        "x-operation-name": "update_batch",
        "tags": [
          "SuboperationController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Suboperation PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/SuboperationPartial"
                }
              }
            }
          }
        },
        "operationId": "SuboperationController.update_batch"
      }
    },
    "/p/suboperation/count": {
      "get": {
        "x-controller-name": "SuboperationController",
        "x-operation-name": "count",
        "tags": [
          "SuboperationController"
        ],
        "responses": {
          "200": {
            "description": "Suboperation model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Suboperation.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Suboperation>"
                }
              }
            }
          }
        ],
        "operationId": "SuboperationController.count"
      }
    },
    "/p/suboperation/{id}": {
      "put": {
        "x-controller-name": "SuboperationController",
        "x-operation-name": "replaceById",
        "tags": [
          "SuboperationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Suboperation PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Suboperation"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SuboperationController.replaceById"
      },
      "patch": {
        "x-controller-name": "SuboperationController",
        "x-operation-name": "updateById",
        "tags": [
          "SuboperationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Suboperation PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SuboperationPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SuboperationController.updateById"
      },
      "get": {
        "x-controller-name": "SuboperationController",
        "x-operation-name": "findById",
        "tags": [
          "SuboperationController"
        ],
        "responses": {
          "200": {
            "description": "Suboperation model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SuboperationWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Suboperation.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SuboperationController.findById"
      },
      "delete": {
        "x-controller-name": "SuboperationController",
        "x-operation-name": "deleteById",
        "tags": [
          "SuboperationController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Suboperation DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "SuboperationController.deleteById"
      }
    },
    "/p/suboperation": {
      "post": {
        "x-controller-name": "SuboperationController",
        "x-operation-name": "create",
        "tags": [
          "SuboperationController"
        ],
        "responses": {
          "200": {
            "description": "Suboperation model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Suboperation"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewSuboperation"
                }
              }
            }
          }
        },
        "operationId": "SuboperationController.create"
      },
      "patch": {
        "x-controller-name": "SuboperationController",
        "x-operation-name": "updateAll",
        "tags": [
          "SuboperationController"
        ],
        "responses": {
          "200": {
            "description": "Suboperation PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Suboperation.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Suboperation>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SuboperationPartial"
              }
            }
          }
        },
        "operationId": "SuboperationController.updateAll"
      },
      "get": {
        "x-controller-name": "SuboperationController",
        "x-operation-name": "find",
        "tags": [
          "SuboperationController"
        ],
        "responses": {
          "200": {
            "description": "Array of Suboperation model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SuboperationWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Suboperation.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SuboperationController.find"
      }
    },
    "/p/supplier/batch": {
      "patch": {
        "x-controller-name": "SupplierController",
        "x-operation-name": "update_batch",
        "tags": [
          "SupplierController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Supplier PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/SupplierPartial"
                }
              }
            }
          }
        },
        "operationId": "SupplierController.update_batch"
      }
    },
    "/p/supplier/count": {
      "get": {
        "x-controller-name": "SupplierController",
        "x-operation-name": "count",
        "tags": [
          "SupplierController"
        ],
        "responses": {
          "200": {
            "description": "Supplier model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Supplier.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Supplier>"
                }
              }
            }
          }
        ],
        "operationId": "SupplierController.count"
      }
    },
    "/p/supplier/{id}": {
      "put": {
        "x-controller-name": "SupplierController",
        "x-operation-name": "replaceById",
        "tags": [
          "SupplierController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Supplier PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Supplier"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SupplierController.replaceById"
      },
      "patch": {
        "x-controller-name": "SupplierController",
        "x-operation-name": "updateById",
        "tags": [
          "SupplierController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Supplier PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SupplierPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SupplierController.updateById"
      },
      "get": {
        "x-controller-name": "SupplierController",
        "x-operation-name": "findById",
        "tags": [
          "SupplierController"
        ],
        "responses": {
          "200": {
            "description": "Supplier model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupplierWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Supplier.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SupplierController.findById"
      },
      "delete": {
        "x-controller-name": "SupplierController",
        "x-operation-name": "deleteById",
        "tags": [
          "SupplierController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Supplier DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "SupplierController.deleteById"
      }
    },
    "/p/supplier": {
      "post": {
        "x-controller-name": "SupplierController",
        "x-operation-name": "create",
        "tags": [
          "SupplierController"
        ],
        "responses": {
          "200": {
            "description": "Supplier model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Supplier"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewSupplier"
                }
              }
            }
          }
        },
        "operationId": "SupplierController.create"
      },
      "patch": {
        "x-controller-name": "SupplierController",
        "x-operation-name": "updateAll",
        "tags": [
          "SupplierController"
        ],
        "responses": {
          "200": {
            "description": "Supplier PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Supplier.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Supplier>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SupplierPartial"
              }
            }
          }
        },
        "operationId": "SupplierController.updateAll"
      },
      "get": {
        "x-controller-name": "SupplierController",
        "x-operation-name": "find",
        "tags": [
          "SupplierController"
        ],
        "responses": {
          "200": {
            "description": "Array of Supplier model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SupplierWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Supplier.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SupplierController.find"
      }
    },
    "/p/supplier_price/batch": {
      "patch": {
        "x-controller-name": "SupplierPriceController",
        "x-operation-name": "update_batch",
        "tags": [
          "SupplierPriceController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "SupplierPrice PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/SupplierPricePartial"
                }
              }
            }
          }
        },
        "operationId": "SupplierPriceController.update_batch"
      }
    },
    "/p/supplier_price/count": {
      "get": {
        "x-controller-name": "SupplierPriceController",
        "x-operation-name": "count",
        "tags": [
          "SupplierPriceController"
        ],
        "responses": {
          "200": {
            "description": "SupplierPrice model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "SupplierPrice.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<SupplierPrice>"
                }
              }
            }
          }
        ],
        "operationId": "SupplierPriceController.count"
      }
    },
    "/p/supplier_price/{id}": {
      "put": {
        "x-controller-name": "SupplierPriceController",
        "x-operation-name": "replaceById",
        "tags": [
          "SupplierPriceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "SupplierPrice PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SupplierPrice"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SupplierPriceController.replaceById"
      },
      "patch": {
        "x-controller-name": "SupplierPriceController",
        "x-operation-name": "updateById",
        "tags": [
          "SupplierPriceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "SupplierPrice PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SupplierPricePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SupplierPriceController.updateById"
      },
      "get": {
        "x-controller-name": "SupplierPriceController",
        "x-operation-name": "findById",
        "tags": [
          "SupplierPriceController"
        ],
        "responses": {
          "200": {
            "description": "SupplierPrice model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupplierPriceWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupplierPrice.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SupplierPriceController.findById"
      },
      "delete": {
        "x-controller-name": "SupplierPriceController",
        "x-operation-name": "deleteById",
        "tags": [
          "SupplierPriceController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "SupplierPrice DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "SupplierPriceController.deleteById"
      }
    },
    "/p/supplier_price": {
      "post": {
        "x-controller-name": "SupplierPriceController",
        "x-operation-name": "create",
        "tags": [
          "SupplierPriceController"
        ],
        "responses": {
          "200": {
            "description": "SupplierPrice model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupplierPrice"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewSupplierPrice"
                }
              }
            }
          }
        },
        "operationId": "SupplierPriceController.create"
      },
      "patch": {
        "x-controller-name": "SupplierPriceController",
        "x-operation-name": "updateAll",
        "tags": [
          "SupplierPriceController"
        ],
        "responses": {
          "200": {
            "description": "SupplierPrice PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "SupplierPrice.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<SupplierPrice>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SupplierPricePartial"
              }
            }
          }
        },
        "operationId": "SupplierPriceController.updateAll"
      },
      "get": {
        "x-controller-name": "SupplierPriceController",
        "x-operation-name": "find",
        "tags": [
          "SupplierPriceController"
        ],
        "responses": {
          "200": {
            "description": "Array of SupplierPrice model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SupplierPriceWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SupplierPrice.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SupplierPriceController.find"
      }
    },
    "/p/target/batch": {
      "patch": {
        "x-controller-name": "TargetController",
        "x-operation-name": "update_batch",
        "tags": [
          "TargetController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Target PATCH success"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/TargetPartial"
                }
              }
            }
          }
        },
        "operationId": "TargetController.update_batch"
      }
    },
    "/p/target/count": {
      "get": {
        "x-controller-name": "TargetController",
        "x-operation-name": "count",
        "tags": [
          "TargetController"
        ],
        "responses": {
          "200": {
            "description": "Target model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Target.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Target>"
                }
              }
            }
          }
        ],
        "operationId": "TargetController.count"
      }
    },
    "/p/target/{id}": {
      "put": {
        "x-controller-name": "TargetController",
        "x-operation-name": "replaceById",
        "tags": [
          "TargetController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Target PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Target"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "TargetController.replaceById"
      },
      "patch": {
        "x-controller-name": "TargetController",
        "x-operation-name": "updateById",
        "tags": [
          "TargetController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Target PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TargetPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "TargetController.updateById"
      },
      "get": {
        "x-controller-name": "TargetController",
        "x-operation-name": "findById",
        "tags": [
          "TargetController"
        ],
        "responses": {
          "200": {
            "description": "Target model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TargetWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Target.Filter"
                }
              }
            }
          }
        ],
        "operationId": "TargetController.findById"
      },
      "delete": {
        "x-controller-name": "TargetController",
        "x-operation-name": "deleteById",
        "tags": [
          "TargetController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Target DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "TargetController.deleteById"
      }
    },
    "/p/target": {
      "post": {
        "x-controller-name": "TargetController",
        "x-operation-name": "create",
        "tags": [
          "TargetController"
        ],
        "responses": {
          "200": {
            "description": "Target model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Target"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/NewTarget"
                }
              }
            }
          }
        },
        "operationId": "TargetController.create"
      },
      "patch": {
        "x-controller-name": "TargetController",
        "x-operation-name": "updateAll",
        "tags": [
          "TargetController"
        ],
        "responses": {
          "200": {
            "description": "Target PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Target.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Target>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TargetPartial"
              }
            }
          }
        },
        "operationId": "TargetController.updateAll"
      },
      "get": {
        "x-controller-name": "TargetController",
        "x-operation-name": "find",
        "tags": [
          "TargetController"
        ],
        "responses": {
          "200": {
            "description": "Array of Target model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/TargetWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Target.Filter"
                }
              }
            }
          }
        ],
        "operationId": "TargetController.find"
      }
    },
    "/print/agents/{id}/health": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "agentHealthProbe",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.agentHealthProbe"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "PrintController.agentHealthProbe"
      }
    },
    "/print/agents/{id}": {
      "put": {
        "x-controller-name": "PrintController",
        "x-operation-name": "updateAgent",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.updateAgent"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "PrintController.updateAgent"
      },
      "delete": {
        "x-controller-name": "PrintController",
        "x-operation-name": "removeAgent",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.removeAgent"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "PrintController.removeAgent"
      }
    },
    "/print/agents": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "createAgent",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.createAgent"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "PrintController.createAgent"
      },
      "get": {
        "x-controller-name": "PrintController",
        "x-operation-name": "listAgents",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.listAgents"
          }
        },
        "operationId": "PrintController.listAgents"
      }
    },
    "/print/gdi/health": {
      "get": {
        "x-controller-name": "PrintController",
        "x-operation-name": "gdiHealth",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.gdiHealth"
          }
        },
        "operationId": "PrintController.gdiHealth"
      }
    },
    "/print/gdi/preview": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "gdiPreview",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.gdiPreview"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "PrintController.gdiPreview"
      }
    },
    "/print/jobs/{id}/cancel": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "cancelJob",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.cancelJob"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "PrintController.cancelJob"
      }
    },
    "/print/jobs/{id}/dispatch": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "dispatchJob",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.dispatchJob"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "PrintController.dispatchJob"
      }
    },
    "/print/jobs/{id}/logs": {
      "get": {
        "x-controller-name": "PrintController",
        "x-operation-name": "jobLogs",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.jobLogs"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "PrintController.jobLogs"
      }
    },
    "/print/jobs/{id}/pause": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "pauseJob",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.pauseJob"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "PrintController.pauseJob"
      }
    },
    "/print/jobs/{id}/reprint": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "reprintJob",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.reprintJob"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "PrintController.reprintJob"
      }
    },
    "/print/jobs/{id}/resume": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "resumeJob",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.resumeJob"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "PrintController.resumeJob"
      }
    },
    "/print/jobs/{id}": {
      "delete": {
        "x-controller-name": "PrintController",
        "x-operation-name": "deleteJob",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.deleteJob"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "PrintController.deleteJob"
      }
    },
    "/print/jobs": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "createJob",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.createJob"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "PrintController.createJob"
      },
      "get": {
        "x-controller-name": "PrintController",
        "x-operation-name": "listJobs",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.listJobs"
          }
        },
        "parameters": [
          {
            "name": "status",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "PrintController.listJobs"
      }
    },
    "/print/log": {
      "get": {
        "x-controller-name": "PrintController",
        "x-operation-name": "printLog",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.printLog"
          }
        },
        "operationId": "PrintController.printLog"
      }
    },
    "/print/mark": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "printMark",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.printMark"
          }
        },
        "parameters": [
          {
            "name": "fguid",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "fbillno",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "PrintController.printMark"
      }
    },
    "/print/now": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "printNow",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.printNow"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "PrintController.printNow"
      }
    },
    "/print/pending": {
      "get": {
        "x-controller-name": "PrintController",
        "x-operation-name": "printPending",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.printPending"
          }
        },
        "operationId": "PrintController.printPending"
      }
    },
    "/print/preview/bills": {
      "get": {
        "x-controller-name": "PrintController",
        "x-operation-name": "previewBills",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.previewBills"
          }
        },
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "limit",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "PrintController.previewBills"
      }
    },
    "/print/queue/settings": {
      "post": {
        "x-controller-name": "PrintController",
        "x-operation-name": "updateQueueSettings",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.updateQueueSettings"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "PrintController.updateQueueSettings"
      },
      "get": {
        "x-controller-name": "PrintController",
        "x-operation-name": "queueSettings",
        "tags": [
          "PrintController"
        ],
        "responses": {
          "200": {
            "description": "Return value of PrintController.queueSettings"
          }
        },
        "operationId": "PrintController.queueSettings"
      }
    },
    "/refresh": {
      "post": {
        "x-controller-name": "LoginController",
        "x-operation-name": "refresh",
        "tags": [
          "LoginController"
        ],
        "responses": {
          "200": {
            "description": "Return value of LoginController.refresh"
          }
        },
        "operationId": "LoginController.refresh"
      }
    },
    "/register": {
      "post": {
        "x-controller-name": "LoginController",
        "x-operation-name": "register",
        "tags": [
          "LoginController"
        ],
        "responses": {
          "200": {
            "description": "Register success"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "additionalProperties": true
              }
            }
          }
        },
        "operationId": "LoginController.register"
      }
    },
    "/whoami": {
      "post": {
        "x-controller-name": "LoginController",
        "x-operation-name": "whoami",
        "tags": [
          "LoginController"
        ],
        "responses": {
          "200": {
            "description": "Return value of LoginController.whoami"
          }
        },
        "operationId": "LoginController.whoami"
      }
    }
  },
  "servers": [
    {
      "url": "http://api.yj.yzhub.cn"
    }
  ],
  "components": {
    "schemas": {
      "Target": {
        "title": "Target",
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "location": {
            "type": "string",
            "nullable": true
          },
          "demandCount": {
            "type": "number",
            "nullable": true
          },
          "demandQuantity": {
            "type": "number",
            "nullable": true
          },
          "finishedCount": {
            "type": "number",
            "nullable": true
          },
          "finishedQuantity": {
            "type": "number",
            "nullable": true
          },
          "year": {
            "type": "number",
            "nullable": true
          },
          "month": {
            "type": "number",
            "nullable": true
          },
          "progress": {
            "type": "number",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "operation": {
            "type": "string",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "updateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "remark": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false
      },
      "NewTarget": {
        "title": "NewTarget",
        "type": "object",
        "description": "(tsType: Target, schemaOptions: { title: 'NewTarget' })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "location": {
            "type": "string",
            "nullable": true
          },
          "demandCount": {
            "type": "number",
            "nullable": true
          },
          "demandQuantity": {
            "type": "number",
            "nullable": true
          },
          "finishedCount": {
            "type": "number",
            "nullable": true
          },
          "finishedQuantity": {
            "type": "number",
            "nullable": true
          },
          "year": {
            "type": "number",
            "nullable": true
          },
          "month": {
            "type": "number",
            "nullable": true
          },
          "progress": {
            "type": "number",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "operation": {
            "type": "string",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "updateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "remark": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Target"
      },
      "TargetWithRelations": {
        "title": "TargetWithRelations",
        "type": "object",
        "description": "(tsType: TargetWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "location": {
            "type": "string",
            "nullable": true
          },
          "demandCount": {
            "type": "number",
            "nullable": true
          },
          "demandQuantity": {
            "type": "number",
            "nullable": true
          },
          "finishedCount": {
            "type": "number",
            "nullable": true
          },
          "finishedQuantity": {
            "type": "number",
            "nullable": true
          },
          "year": {
            "type": "number",
            "nullable": true
          },
          "month": {
            "type": "number",
            "nullable": true
          },
          "progress": {
            "type": "number",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "operation": {
            "type": "string",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "updateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "remark": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "TargetWithRelations"
      },
      "TargetPartial": {
        "title": "TargetPartial",
        "type": "object",
        "description": "(tsType: Partial<Target>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "location": {
            "type": "string",
            "nullable": true
          },
          "demandCount": {
            "type": "number",
            "nullable": true
          },
          "demandQuantity": {
            "type": "number",
            "nullable": true
          },
          "finishedCount": {
            "type": "number",
            "nullable": true
          },
          "finishedQuantity": {
            "type": "number",
            "nullable": true
          },
          "year": {
            "type": "number",
            "nullable": true
          },
          "month": {
            "type": "number",
            "nullable": true
          },
          "progress": {
            "type": "number",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "operation": {
            "type": "string",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "updateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "remark": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Target>"
      },
      "Supplier": {
        "title": "Supplier",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "company": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "telephone": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "linkman": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "operation": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewSupplier": {
        "title": "NewSupplier",
        "type": "object",
        "description": "(tsType: Supplier, schemaOptions: { title: 'NewSupplier' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "company": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "telephone": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "linkman": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "operation": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Supplier"
      },
      "SupplierWithRelations": {
        "title": "SupplierWithRelations",
        "type": "object",
        "description": "(tsType: SupplierWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "company": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "telephone": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "linkman": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "operation": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "SupplierWithRelations"
      },
      "SupplierPartial": {
        "title": "SupplierPartial",
        "type": "object",
        "description": "(tsType: Partial<Supplier>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "company": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "telephone": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "linkman": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "operation": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Supplier>"
      },
      "SupplierPrice": {
        "title": "SupplierPrice",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "supplierId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "price": {
            "type": "number"
          },
          "remark": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "iserror": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "NewSupplierPrice": {
        "title": "NewSupplierPrice",
        "type": "object",
        "description": "(tsType: SupplierPrice, schemaOptions: { title: 'NewSupplierPrice' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "supplierId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "price": {
            "type": "number"
          },
          "remark": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "iserror": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "SupplierPrice"
      },
      "Demand": {
        "title": "Demand",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "customerId": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "minshipment": {
            "type": "number"
          },
          "maxlateness": {
            "type": "string"
          },
          "delay": {
            "type": "string"
          },
          "plannedquantity": {
            "type": "number"
          },
          "deliverydate": {
            "type": "string",
            "format": "date-time"
          },
          "plan": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "operationId": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "customerdue": {
            "type": "string",
            "format": "date-time"
          },
          "customerquantity": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "person": {
            "type": "string"
          },
          "ready": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "orderCode": {
            "type": "string"
          },
          "totalProductionTime": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "plannedLackQuantity": {
            "type": "number"
          },
          "storedQuantity": {
            "type": "number"
          },
          "storedLackQuantity": {
            "type": "number"
          },
          "actualDeliveryDate": {
            "type": "string",
            "format": "date-time"
          },
          "actualDelay": {
            "type": "string"
          },
          "productionStatus": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "estimatedNetDuration": {
            "type": "string"
          },
          "class": {
            "type": "string"
          },
          "isArchive": {
            "type": "boolean"
          },
          "supplierId": {
            "type": "string"
          },
          "priorityClass": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "operationSizeminimum": {
            "type": "number"
          },
          "operationSizemultiple": {
            "type": "number"
          },
          "operationSizemaximum": {
            "type": "number"
          },
          "bom2Id": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "isFollow": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isLock": {
            "type": "boolean"
          },
          "isPrinted": {
            "type": "boolean"
          },
          "printPerson": {
            "type": "string"
          },
          "isPush": {
            "type": "boolean"
          },
          "createPerson": {
            "type": "string"
          },
          "forecastOrder": {
            "type": "string"
          },
          "manuOrder": {
            "type": "string"
          },
          "bomId": {
            "type": "string"
          },
          "isSplit": {
            "type": "boolean"
          },
          "itemPicturecode": {
            "type": "string"
          },
          "planDate": {
            "type": "string",
            "format": "date-time"
          },
          "isEmergency": {
            "type": "boolean"
          },
          "isOutsouring": {
            "type": "boolean"
          },
          "itemResource": {
            "type": "string"
          },
          "itemOperation": {
            "type": "string"
          },
          "itemMaterial": {
            "type": "string"
          },
          "bom2Id2": {
            "type": "string"
          },
          "itemFactor": {
            "type": "number"
          },
          "detail": {
            "type": "string"
          }
        },
        "required": [
          "itemId",
          "locationId",
          "customerId",
          "due",
          "quantity",
          "priority"
        ],
        "additionalProperties": false
      },
      "SupplierPriceWithRelations": {
        "title": "SupplierPriceWithRelations",
        "type": "object",
        "description": "(tsType: SupplierPriceWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "supplierId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "price": {
            "type": "number"
          },
          "remark": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "iserror": {
            "type": "boolean"
          },
          "supplier": {
            "$ref": "#/components/schemas/Supplier"
          },
          "foreignKey": {},
          "demand": {
            "$ref": "#/components/schemas/Demand"
          },
          "item": {
            "$ref": "#/components/schemas/Demand"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "SupplierPriceWithRelations"
      },
      "SupplierPricePartial": {
        "title": "SupplierPricePartial",
        "type": "object",
        "description": "(tsType: Partial<SupplierPrice>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "supplierId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "price": {
            "type": "number"
          },
          "remark": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "iserror": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<SupplierPrice>"
      },
      "Suboperation": {
        "title": "Suboperation",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "suboperationId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationId",
          "suboperationId",
          "priority",
          "lastmodified"
        ],
        "additionalProperties": false
      },
      "NewSuboperation": {
        "title": "NewSuboperation",
        "type": "object",
        "description": "(tsType: Suboperation, schemaOptions: { title: 'NewSuboperation' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "suboperationId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationId",
          "suboperationId",
          "priority",
          "lastmodified"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Suboperation"
      },
      "SuboperationWithRelations": {
        "title": "SuboperationWithRelations",
        "type": "object",
        "description": "(tsType: SuboperationWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "suboperationId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationId",
          "suboperationId",
          "priority",
          "lastmodified"
        ],
        "additionalProperties": false,
        "x-typescript-type": "SuboperationWithRelations"
      },
      "SuboperationPartial": {
        "title": "SuboperationPartial",
        "type": "object",
        "description": "(tsType: Partial<Suboperation>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "suboperationId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Suboperation>"
      },
      "Skill": {
        "title": "Skill",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "NewSkill": {
        "title": "NewSkill",
        "type": "object",
        "description": "(tsType: Skill, schemaOptions: { title: 'NewSkill' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Skill"
      },
      "SkillWithRelations": {
        "title": "SkillWithRelations",
        "type": "object",
        "description": "(tsType: SkillWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "SkillWithRelations"
      },
      "SkillPartial": {
        "title": "SkillPartial",
        "type": "object",
        "description": "(tsType: Partial<Skill>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Skill>"
      },
      "Setuprule": {
        "title": "Setuprule",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "setupmatrixId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "fromsetup": {
            "type": "string"
          },
          "tosetup": {
            "type": "string"
          },
          "duration": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "resourceId": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "setupmatrixId",
          "priority"
        ],
        "additionalProperties": false
      },
      "NewSetuprule": {
        "title": "NewSetuprule",
        "type": "object",
        "description": "(tsType: Setuprule, schemaOptions: { title: 'NewSetuprule' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "setupmatrixId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "fromsetup": {
            "type": "string"
          },
          "tosetup": {
            "type": "string"
          },
          "duration": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "resourceId": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "setupmatrixId",
          "priority"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Setuprule"
      },
      "SetupruleWithRelations": {
        "title": "SetupruleWithRelations",
        "type": "object",
        "description": "(tsType: SetupruleWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "setupmatrixId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "fromsetup": {
            "type": "string"
          },
          "tosetup": {
            "type": "string"
          },
          "duration": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "resourceId": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "setupmatrixId",
          "priority"
        ],
        "additionalProperties": false,
        "x-typescript-type": "SetupruleWithRelations"
      },
      "SetuprulePartial": {
        "title": "SetuprulePartial",
        "type": "object",
        "description": "(tsType: Partial<Setuprule>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "setupmatrixId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "fromsetup": {
            "type": "string"
          },
          "tosetup": {
            "type": "string"
          },
          "duration": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "resourceId": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Setuprule>"
      },
      "Setupmatrix": {
        "title": "Setupmatrix",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "NewSetupmatrix": {
        "title": "NewSetupmatrix",
        "type": "object",
        "description": "(tsType: Setupmatrix, schemaOptions: { title: 'NewSetupmatrix' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Setupmatrix"
      },
      "SetupmatrixWithRelations": {
        "title": "SetupmatrixWithRelations",
        "type": "object",
        "description": "(tsType: SetupmatrixWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "SetupmatrixWithRelations"
      },
      "SetupmatrixPartial": {
        "title": "SetupmatrixPartial",
        "type": "object",
        "description": "(tsType: Partial<Setupmatrix>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Setupmatrix>"
      },
      "Resourceskill": {
        "title": "Resourceskill",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "resourceId": {
            "type": "string"
          },
          "skillId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "resourceId",
          "skillId"
        ],
        "additionalProperties": false
      },
      "NewResourceskill": {
        "title": "NewResourceskill",
        "type": "object",
        "description": "(tsType: Resourceskill, schemaOptions: { title: 'NewResourceskill' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "resourceId": {
            "type": "string"
          },
          "skillId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "resourceId",
          "skillId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Resourceskill"
      },
      "ResourceskillWithRelations": {
        "title": "ResourceskillWithRelations",
        "type": "object",
        "description": "(tsType: ResourceskillWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "resourceId": {
            "type": "string"
          },
          "skillId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "resourceId",
          "skillId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ResourceskillWithRelations"
      },
      "ResourceskillPartial": {
        "title": "ResourceskillPartial",
        "type": "object",
        "description": "(tsType: Partial<Resourceskill>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "resourceId": {
            "type": "string"
          },
          "skillId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Resourceskill>"
      },
      "Resource": {
        "title": "Resource",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "constrained": {
            "type": "boolean"
          },
          "maximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "maxearly": {
            "type": "string"
          },
          "setup": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "efficiency": {
            "type": "number"
          },
          "efficiencyCalendarId": {
            "type": "string"
          },
          "maximumCalendarId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "setupmatrixId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "overloadcount": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "person": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "status": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "salary": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewResource": {
        "title": "NewResource",
        "type": "object",
        "description": "(tsType: Resource, schemaOptions: { title: 'NewResource' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "constrained": {
            "type": "boolean"
          },
          "maximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "maxearly": {
            "type": "string"
          },
          "setup": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "efficiency": {
            "type": "number"
          },
          "efficiencyCalendarId": {
            "type": "string"
          },
          "maximumCalendarId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "setupmatrixId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "overloadcount": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "person": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "status": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "salary": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Resource"
      },
      "ResourceWithRelations": {
        "title": "ResourceWithRelations",
        "type": "object",
        "description": "(tsType: ResourceWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "constrained": {
            "type": "boolean"
          },
          "maximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "maxearly": {
            "type": "string"
          },
          "setup": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "efficiency": {
            "type": "number"
          },
          "efficiencyCalendarId": {
            "type": "string"
          },
          "maximumCalendarId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "setupmatrixId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "overloadcount": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "person": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "status": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "salary": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ResourceWithRelations"
      },
      "ResourcePartial": {
        "title": "ResourcePartial",
        "type": "object",
        "description": "(tsType: Partial<Resource>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "constrained": {
            "type": "boolean"
          },
          "maximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "maxearly": {
            "type": "string"
          },
          "setup": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "efficiency": {
            "type": "number"
          },
          "efficiencyCalendarId": {
            "type": "string"
          },
          "maximumCalendarId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "setupmatrixId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "overloadcount": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "person": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "status": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "salary": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Resource>"
      },
      "ReportmanagerReport": {
        "title": "ReportmanagerReport",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "sql": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "public": {
            "type": "boolean"
          },
          "userId": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "name",
          "lastmodified"
        ],
        "additionalProperties": false
      },
      "NewReportmanagerReport": {
        "title": "NewReportmanagerReport",
        "type": "object",
        "description": "(tsType: ReportmanagerReport, schemaOptions: { title: 'NewReportmanagerReport' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "sql": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "public": {
            "type": "boolean"
          },
          "userId": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "name",
          "lastmodified"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ReportmanagerReport"
      },
      "ReportmanagerReportWithRelations": {
        "title": "ReportmanagerReportWithRelations",
        "type": "object",
        "description": "(tsType: ReportmanagerReportWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "sql": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "public": {
            "type": "boolean"
          },
          "userId": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "name",
          "lastmodified"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ReportmanagerReportWithRelations"
      },
      "ReportmanagerReportPartial": {
        "title": "ReportmanagerReportPartial",
        "type": "object",
        "description": "(tsType: Partial<ReportmanagerReport>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "sql": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "public": {
            "type": "boolean"
          },
          "userId": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<ReportmanagerReport>"
      },
      "ReportmanagerColumn": {
        "title": "ReportmanagerColumn",
        "type": "object",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "sequence": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "format": {
            "type": "string"
          },
          "reportId": {
            "type": "number"
          }
        },
        "required": [
          "lastmodified",
          "sequence",
          "name",
          "reportId"
        ],
        "additionalProperties": false
      },
      "NewReportmanagerColumn": {
        "title": "NewReportmanagerColumn",
        "type": "object",
        "description": "(tsType: ReportmanagerColumn, schemaOptions: { title: 'NewReportmanagerColumn' })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "sequence": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "format": {
            "type": "string"
          },
          "reportId": {
            "type": "number"
          }
        },
        "required": [
          "lastmodified",
          "sequence",
          "name",
          "reportId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ReportmanagerColumn"
      },
      "ReportmanagerColumnWithRelations": {
        "title": "ReportmanagerColumnWithRelations",
        "type": "object",
        "description": "(tsType: ReportmanagerColumnWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "sequence": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "format": {
            "type": "string"
          },
          "reportId": {
            "type": "number"
          }
        },
        "required": [
          "lastmodified",
          "sequence",
          "name",
          "reportId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ReportmanagerColumnWithRelations"
      },
      "ReportmanagerColumnPartial": {
        "title": "ReportmanagerColumnPartial",
        "type": "object",
        "description": "(tsType: Partial<ReportmanagerColumn>, schemaOptions: { partial: true })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "sequence": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "format": {
            "type": "string"
          },
          "reportId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<ReportmanagerColumn>"
      },
      "PgStatStatements": {
        "title": "PgStatStatements",
        "type": "object",
        "properties": {
          "userid": {
            "type": "string",
            "nullable": true
          },
          "dbid": {
            "type": "string",
            "nullable": true
          },
          "toplevel": {
            "type": "boolean",
            "nullable": true
          },
          "queryid": {
            "type": "number",
            "nullable": true
          },
          "query": {
            "type": "string",
            "nullable": true
          },
          "plans": {
            "type": "number",
            "nullable": true
          },
          "totalPlanTime": {
            "type": "number",
            "nullable": true
          },
          "minPlanTime": {
            "type": "number",
            "nullable": true
          },
          "maxPlanTime": {
            "type": "number",
            "nullable": true
          },
          "meanPlanTime": {
            "type": "number",
            "nullable": true
          },
          "stddevPlanTime": {
            "type": "number",
            "nullable": true
          },
          "calls": {
            "type": "number",
            "nullable": true
          },
          "totalExecTime": {
            "type": "number",
            "nullable": true
          },
          "minExecTime": {
            "type": "number",
            "nullable": true
          },
          "maxExecTime": {
            "type": "number",
            "nullable": true
          },
          "meanExecTime": {
            "type": "number",
            "nullable": true
          },
          "stddevExecTime": {
            "type": "number",
            "nullable": true
          },
          "rows": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksHit": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksRead": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksDirtied": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "localBlksHit": {
            "type": "number",
            "nullable": true
          },
          "localBlksRead": {
            "type": "number",
            "nullable": true
          },
          "localBlksDirtied": {
            "type": "number",
            "nullable": true
          },
          "localBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "tempBlksRead": {
            "type": "number",
            "nullable": true
          },
          "tempBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "blkReadTime": {
            "type": "number",
            "nullable": true
          },
          "blkWriteTime": {
            "type": "number",
            "nullable": true
          },
          "walRecords": {
            "type": "number",
            "nullable": true
          },
          "walFpi": {
            "type": "number",
            "nullable": true
          },
          "walBytes": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewPgStatStatements": {
        "title": "NewPgStatStatements",
        "type": "object",
        "description": "(tsType: PgStatStatements, schemaOptions: { title: 'NewPgStatStatements' })",
        "properties": {
          "userid": {
            "type": "string",
            "nullable": true
          },
          "dbid": {
            "type": "string",
            "nullable": true
          },
          "toplevel": {
            "type": "boolean",
            "nullable": true
          },
          "queryid": {
            "type": "number",
            "nullable": true
          },
          "query": {
            "type": "string",
            "nullable": true
          },
          "plans": {
            "type": "number",
            "nullable": true
          },
          "totalPlanTime": {
            "type": "number",
            "nullable": true
          },
          "minPlanTime": {
            "type": "number",
            "nullable": true
          },
          "maxPlanTime": {
            "type": "number",
            "nullable": true
          },
          "meanPlanTime": {
            "type": "number",
            "nullable": true
          },
          "stddevPlanTime": {
            "type": "number",
            "nullable": true
          },
          "calls": {
            "type": "number",
            "nullable": true
          },
          "totalExecTime": {
            "type": "number",
            "nullable": true
          },
          "minExecTime": {
            "type": "number",
            "nullable": true
          },
          "maxExecTime": {
            "type": "number",
            "nullable": true
          },
          "meanExecTime": {
            "type": "number",
            "nullable": true
          },
          "stddevExecTime": {
            "type": "number",
            "nullable": true
          },
          "rows": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksHit": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksRead": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksDirtied": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "localBlksHit": {
            "type": "number",
            "nullable": true
          },
          "localBlksRead": {
            "type": "number",
            "nullable": true
          },
          "localBlksDirtied": {
            "type": "number",
            "nullable": true
          },
          "localBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "tempBlksRead": {
            "type": "number",
            "nullable": true
          },
          "tempBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "blkReadTime": {
            "type": "number",
            "nullable": true
          },
          "blkWriteTime": {
            "type": "number",
            "nullable": true
          },
          "walRecords": {
            "type": "number",
            "nullable": true
          },
          "walFpi": {
            "type": "number",
            "nullable": true
          },
          "walBytes": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "PgStatStatements"
      },
      "PgStatStatementsWithRelations": {
        "title": "PgStatStatementsWithRelations",
        "type": "object",
        "description": "(tsType: PgStatStatementsWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "userid": {
            "type": "string",
            "nullable": true
          },
          "dbid": {
            "type": "string",
            "nullable": true
          },
          "toplevel": {
            "type": "boolean",
            "nullable": true
          },
          "queryid": {
            "type": "number",
            "nullable": true
          },
          "query": {
            "type": "string",
            "nullable": true
          },
          "plans": {
            "type": "number",
            "nullable": true
          },
          "totalPlanTime": {
            "type": "number",
            "nullable": true
          },
          "minPlanTime": {
            "type": "number",
            "nullable": true
          },
          "maxPlanTime": {
            "type": "number",
            "nullable": true
          },
          "meanPlanTime": {
            "type": "number",
            "nullable": true
          },
          "stddevPlanTime": {
            "type": "number",
            "nullable": true
          },
          "calls": {
            "type": "number",
            "nullable": true
          },
          "totalExecTime": {
            "type": "number",
            "nullable": true
          },
          "minExecTime": {
            "type": "number",
            "nullable": true
          },
          "maxExecTime": {
            "type": "number",
            "nullable": true
          },
          "meanExecTime": {
            "type": "number",
            "nullable": true
          },
          "stddevExecTime": {
            "type": "number",
            "nullable": true
          },
          "rows": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksHit": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksRead": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksDirtied": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "localBlksHit": {
            "type": "number",
            "nullable": true
          },
          "localBlksRead": {
            "type": "number",
            "nullable": true
          },
          "localBlksDirtied": {
            "type": "number",
            "nullable": true
          },
          "localBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "tempBlksRead": {
            "type": "number",
            "nullable": true
          },
          "tempBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "blkReadTime": {
            "type": "number",
            "nullable": true
          },
          "blkWriteTime": {
            "type": "number",
            "nullable": true
          },
          "walRecords": {
            "type": "number",
            "nullable": true
          },
          "walFpi": {
            "type": "number",
            "nullable": true
          },
          "walBytes": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "PgStatStatementsWithRelations"
      },
      "PgStatStatementsPartial": {
        "title": "PgStatStatementsPartial",
        "type": "object",
        "description": "(tsType: Partial<PgStatStatements>, schemaOptions: { partial: true })",
        "properties": {
          "userid": {
            "type": "string",
            "nullable": true
          },
          "dbid": {
            "type": "string",
            "nullable": true
          },
          "toplevel": {
            "type": "boolean",
            "nullable": true
          },
          "queryid": {
            "type": "number",
            "nullable": true
          },
          "query": {
            "type": "string",
            "nullable": true
          },
          "plans": {
            "type": "number",
            "nullable": true
          },
          "totalPlanTime": {
            "type": "number",
            "nullable": true
          },
          "minPlanTime": {
            "type": "number",
            "nullable": true
          },
          "maxPlanTime": {
            "type": "number",
            "nullable": true
          },
          "meanPlanTime": {
            "type": "number",
            "nullable": true
          },
          "stddevPlanTime": {
            "type": "number",
            "nullable": true
          },
          "calls": {
            "type": "number",
            "nullable": true
          },
          "totalExecTime": {
            "type": "number",
            "nullable": true
          },
          "minExecTime": {
            "type": "number",
            "nullable": true
          },
          "maxExecTime": {
            "type": "number",
            "nullable": true
          },
          "meanExecTime": {
            "type": "number",
            "nullable": true
          },
          "stddevExecTime": {
            "type": "number",
            "nullable": true
          },
          "rows": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksHit": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksRead": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksDirtied": {
            "type": "number",
            "nullable": true
          },
          "sharedBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "localBlksHit": {
            "type": "number",
            "nullable": true
          },
          "localBlksRead": {
            "type": "number",
            "nullable": true
          },
          "localBlksDirtied": {
            "type": "number",
            "nullable": true
          },
          "localBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "tempBlksRead": {
            "type": "number",
            "nullable": true
          },
          "tempBlksWritten": {
            "type": "number",
            "nullable": true
          },
          "blkReadTime": {
            "type": "number",
            "nullable": true
          },
          "blkWriteTime": {
            "type": "number",
            "nullable": true
          },
          "walRecords": {
            "type": "number",
            "nullable": true
          },
          "walFpi": {
            "type": "number",
            "nullable": true
          },
          "walBytes": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<PgStatStatements>"
      },
      "PgStatStatementsInfo": {
        "title": "PgStatStatementsInfo",
        "type": "object",
        "properties": {
          "dealloc": {
            "type": "number",
            "nullable": true
          },
          "statsReset": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewPgStatStatementsInfo": {
        "title": "NewPgStatStatementsInfo",
        "type": "object",
        "description": "(tsType: PgStatStatementsInfo, schemaOptions: { title: 'NewPgStatStatementsInfo' })",
        "properties": {
          "dealloc": {
            "type": "number",
            "nullable": true
          },
          "statsReset": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "PgStatStatementsInfo"
      },
      "PgStatStatementsInfoWithRelations": {
        "title": "PgStatStatementsInfoWithRelations",
        "type": "object",
        "description": "(tsType: PgStatStatementsInfoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "dealloc": {
            "type": "number",
            "nullable": true
          },
          "statsReset": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "PgStatStatementsInfoWithRelations"
      },
      "PgStatStatementsInfoPartial": {
        "title": "PgStatStatementsInfoPartial",
        "type": "object",
        "description": "(tsType: Partial<PgStatStatementsInfo>, schemaOptions: { partial: true })",
        "properties": {
          "dealloc": {
            "type": "number",
            "nullable": true
          },
          "statsReset": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<PgStatStatementsInfo>"
      },
      "OutResourceplan": {
        "title": "OutResourceplan",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "resource": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "available": {
            "type": "number"
          },
          "unavailable": {
            "type": "number"
          },
          "setup": {
            "type": "number"
          },
          "load": {
            "type": "number"
          },
          "free": {
            "type": "number"
          }
        },
        "required": [
          "resource",
          "startdate"
        ],
        "additionalProperties": false
      },
      "NewOutResourceplan": {
        "title": "NewOutResourceplan",
        "type": "object",
        "description": "(tsType: OutResourceplan, schemaOptions: { title: 'NewOutResourceplan' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "resource": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "available": {
            "type": "number"
          },
          "unavailable": {
            "type": "number"
          },
          "setup": {
            "type": "number"
          },
          "load": {
            "type": "number"
          },
          "free": {
            "type": "number"
          }
        },
        "required": [
          "resource",
          "startdate"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OutResourceplan"
      },
      "OutResourceplanWithRelations": {
        "title": "OutResourceplanWithRelations",
        "type": "object",
        "description": "(tsType: OutResourceplanWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "resource": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "available": {
            "type": "number"
          },
          "unavailable": {
            "type": "number"
          },
          "setup": {
            "type": "number"
          },
          "load": {
            "type": "number"
          },
          "free": {
            "type": "number"
          }
        },
        "required": [
          "resource",
          "startdate"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OutResourceplanWithRelations"
      },
      "OutResourceplanPartial": {
        "title": "OutResourceplanPartial",
        "type": "object",
        "description": "(tsType: Partial<OutResourceplan>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "resource": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "available": {
            "type": "number"
          },
          "unavailable": {
            "type": "number"
          },
          "setup": {
            "type": "number"
          },
          "load": {
            "type": "number"
          },
          "free": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OutResourceplan>"
      },
      "OutProblem": {
        "title": "OutProblem",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "entity": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "weight": {
            "type": "number"
          }
        },
        "required": [
          "entity",
          "owner",
          "name",
          "description",
          "startdate",
          "enddate",
          "weight"
        ],
        "additionalProperties": false
      },
      "NewOutProblem": {
        "title": "NewOutProblem",
        "type": "object",
        "description": "(tsType: OutProblem, schemaOptions: { title: 'NewOutProblem' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "entity": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "weight": {
            "type": "number"
          }
        },
        "required": [
          "entity",
          "owner",
          "name",
          "description",
          "startdate",
          "enddate",
          "weight"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OutProblem"
      },
      "OutProblemWithRelations": {
        "title": "OutProblemWithRelations",
        "type": "object",
        "description": "(tsType: OutProblemWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "entity": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "weight": {
            "type": "number"
          }
        },
        "required": [
          "entity",
          "owner",
          "name",
          "description",
          "startdate",
          "enddate",
          "weight"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OutProblemWithRelations"
      },
      "OutProblemPartial": {
        "title": "OutProblemPartial",
        "type": "object",
        "description": "(tsType: Partial<OutProblem>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "entity": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "weight": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OutProblem>"
      },
      "OutConstraint": {
        "title": "OutConstraint",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "demand": {
            "type": "string"
          },
          "entity": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "weight": {
            "type": "number"
          },
          "forecast": {
            "type": "string"
          },
          "item": {
            "type": "string"
          }
        },
        "required": [
          "entity",
          "owner",
          "name",
          "description",
          "startdate",
          "enddate",
          "weight"
        ],
        "additionalProperties": false
      },
      "NewOutConstraint": {
        "title": "NewOutConstraint",
        "type": "object",
        "description": "(tsType: OutConstraint, schemaOptions: { title: 'NewOutConstraint' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "demand": {
            "type": "string"
          },
          "entity": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "weight": {
            "type": "number"
          },
          "forecast": {
            "type": "string"
          },
          "item": {
            "type": "string"
          }
        },
        "required": [
          "entity",
          "owner",
          "name",
          "description",
          "startdate",
          "enddate",
          "weight"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OutConstraint"
      },
      "OutConstraintWithRelations": {
        "title": "OutConstraintWithRelations",
        "type": "object",
        "description": "(tsType: OutConstraintWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "demand": {
            "type": "string"
          },
          "entity": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "weight": {
            "type": "number"
          },
          "forecast": {
            "type": "string"
          },
          "item": {
            "type": "string"
          }
        },
        "required": [
          "entity",
          "owner",
          "name",
          "description",
          "startdate",
          "enddate",
          "weight"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OutConstraintWithRelations"
      },
      "OutConstraintPartial": {
        "title": "OutConstraintPartial",
        "type": "object",
        "description": "(tsType: Partial<OutConstraint>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "demand": {
            "type": "string"
          },
          "entity": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "weight": {
            "type": "number"
          },
          "forecast": {
            "type": "string"
          },
          "item": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OutConstraint>"
      },
      "Operationresource": {
        "title": "Operationresource",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "quantityFixed": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "setup": {
            "type": "string"
          },
          "search": {
            "type": "string"
          },
          "skillId": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "property": {
            "type": "string"
          }
        },
        "required": [
          "operationId",
          "resourceId",
          "quantity"
        ],
        "additionalProperties": false
      },
      "NewOperationresource": {
        "title": "NewOperationresource",
        "type": "object",
        "description": "(tsType: Operationresource, schemaOptions: { title: 'NewOperationresource' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "quantityFixed": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "setup": {
            "type": "string"
          },
          "search": {
            "type": "string"
          },
          "skillId": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "property": {
            "type": "string"
          }
        },
        "required": [
          "operationId",
          "resourceId",
          "quantity"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Operationresource"
      },
      "OperationresourceWithRelations": {
        "title": "OperationresourceWithRelations",
        "type": "object",
        "description": "(tsType: OperationresourceWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "quantityFixed": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "setup": {
            "type": "string"
          },
          "search": {
            "type": "string"
          },
          "skillId": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "property": {
            "type": "string"
          }
        },
        "required": [
          "operationId",
          "resourceId",
          "quantity"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationresourceWithRelations"
      },
      "OperationresourcePartial": {
        "title": "OperationresourcePartial",
        "type": "object",
        "description": "(tsType: Partial<Operationresource>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "quantityFixed": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "setup": {
            "type": "string"
          },
          "search": {
            "type": "string"
          },
          "skillId": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "property": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Operationresource>"
      },
      "Operationplanresource": {
        "title": "Operationplanresource",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationplanId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "setup": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationplanId",
          "resourceId"
        ],
        "additionalProperties": false
      },
      "NewOperationplanresource": {
        "title": "NewOperationplanresource",
        "type": "object",
        "description": "(tsType: Operationplanresource, schemaOptions: { title: 'NewOperationplanresource' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationplanId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "setup": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationplanId",
          "resourceId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Operationplanresource"
      },
      "OperationplanresourceWithRelations": {
        "title": "OperationplanresourceWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanresourceWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationplanId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "setup": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationplanId",
          "resourceId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanresourceWithRelations"
      },
      "OperationplanresourcePartial": {
        "title": "OperationplanresourcePartial",
        "type": "object",
        "description": "(tsType: Partial<Operationplanresource>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationplanId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "setup": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Operationplanresource>"
      },
      "Operationplanmaterial": {
        "title": "Operationplanmaterial",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationplanId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "flowdate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "onhand": {
            "type": "number"
          },
          "minimum": {
            "type": "number"
          },
          "periodofcover": {
            "type": "number"
          },
          "status": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationplanId",
          "itemId",
          "locationId",
          "flowdate",
          "quantity"
        ],
        "additionalProperties": false
      },
      "NewOperationplanmaterial": {
        "title": "NewOperationplanmaterial",
        "type": "object",
        "description": "(tsType: Operationplanmaterial, schemaOptions: { title: 'NewOperationplanmaterial' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationplanId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "flowdate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "onhand": {
            "type": "number"
          },
          "minimum": {
            "type": "number"
          },
          "periodofcover": {
            "type": "number"
          },
          "status": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationplanId",
          "itemId",
          "locationId",
          "flowdate",
          "quantity"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Operationplanmaterial"
      },
      "OperationplanmaterialWithRelations": {
        "title": "OperationplanmaterialWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanmaterialWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationplanId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "flowdate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "onhand": {
            "type": "number"
          },
          "minimum": {
            "type": "number"
          },
          "periodofcover": {
            "type": "number"
          },
          "status": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationplanId",
          "itemId",
          "locationId",
          "flowdate",
          "quantity"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanmaterialWithRelations"
      },
      "OperationplanmaterialPartial": {
        "title": "OperationplanmaterialPartial",
        "type": "object",
        "description": "(tsType: Partial<Operationplanmaterial>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationplanId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "flowdate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "onhand": {
            "type": "number"
          },
          "minimum": {
            "type": "number"
          },
          "periodofcover": {
            "type": "number"
          },
          "status": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Operationplanmaterial>"
      },
      "Operationplan": {
        "title": "Operationplan",
        "type": "object",
        "properties": {
          "reference": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "color": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "criticality": {
            "type": "number"
          },
          "delay": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "supplierId": {
            "type": "string"
          },
          "destinationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "originId": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batch": {
            "type": "string"
          },
          "quantityCompleted": {
            "type": "number"
          },
          "statusValid": {
            "type": "string"
          },
          "statusFeedback": {
            "type": "string"
          },
          "statusFeedbackVerify": {
            "type": "string"
          },
          "statusValidDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusFeedbackDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusFeedbackVerifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusValidPerson": {
            "type": "string"
          },
          "statusFeedbackPerson": {
            "type": "string"
          },
          "statusFeedbackVerifyPerson": {
            "type": "string"
          },
          "actualStartdate": {
            "type": "string",
            "format": "date-time"
          },
          "actualEnddate": {
            "type": "string",
            "format": "date-time"
          },
          "duration": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "actualDuration": {
            "type": "string"
          },
          "actualNetDuration": {
            "type": "string"
          },
          "progress": {
            "type": "number"
          },
          "resourceId": {
            "type": "string"
          },
          "operationPriority": {
            "type": "number"
          },
          "fullName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "qualifiedQuantity": {
            "type": "number"
          },
          "unqualifiedQuantity": {
            "type": "number"
          },
          "resourcePerson": {
            "type": "string"
          },
          "isArchive": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "isReschedule": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          },
          "isLock": {
            "type": "boolean"
          },
          "seq": {
            "type": "number"
          },
          "detail": {
            "type": "string"
          }
        },
        "required": [
          "type",
          "quantity"
        ],
        "additionalProperties": false
      },
      "NewOperationplan": {
        "title": "NewOperationplan",
        "type": "object",
        "description": "(tsType: Operationplan, schemaOptions: { title: 'NewOperationplan' })",
        "properties": {
          "reference": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "color": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "criticality": {
            "type": "number"
          },
          "delay": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "supplierId": {
            "type": "string"
          },
          "destinationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "originId": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batch": {
            "type": "string"
          },
          "quantityCompleted": {
            "type": "number"
          },
          "statusValid": {
            "type": "string"
          },
          "statusFeedback": {
            "type": "string"
          },
          "statusFeedbackVerify": {
            "type": "string"
          },
          "statusValidDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusFeedbackDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusFeedbackVerifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusValidPerson": {
            "type": "string"
          },
          "statusFeedbackPerson": {
            "type": "string"
          },
          "statusFeedbackVerifyPerson": {
            "type": "string"
          },
          "actualStartdate": {
            "type": "string",
            "format": "date-time"
          },
          "actualEnddate": {
            "type": "string",
            "format": "date-time"
          },
          "duration": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "actualDuration": {
            "type": "string"
          },
          "actualNetDuration": {
            "type": "string"
          },
          "progress": {
            "type": "number"
          },
          "resourceId": {
            "type": "string"
          },
          "operationPriority": {
            "type": "number"
          },
          "fullName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "qualifiedQuantity": {
            "type": "number"
          },
          "unqualifiedQuantity": {
            "type": "number"
          },
          "resourcePerson": {
            "type": "string"
          },
          "isArchive": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "isReschedule": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          },
          "isLock": {
            "type": "boolean"
          },
          "seq": {
            "type": "number"
          },
          "detail": {
            "type": "string"
          }
        },
        "required": [
          "type",
          "quantity"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Operationplan"
      },
      "Item": {
        "title": "Item",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "type": {
            "type": "string"
          },
          "volume": {
            "type": "number"
          },
          "weight": {
            "type": "number"
          },
          "periodofcover": {
            "type": "number"
          },
          "uom": {
            "type": "string"
          },
          "latedemandcount": {
            "type": "number"
          },
          "latedemandquantity": {
            "type": "number"
          },
          "latedemandvalue": {
            "type": "number"
          },
          "unplanneddemandcount": {
            "type": "number"
          },
          "unplanneddemandquantity": {
            "type": "number"
          },
          "unplanneddemandvalue": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "specification": {
            "type": "string"
          },
          "pictureCode": {
            "type": "string"
          },
          "productionName": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "erpClass": {
            "type": "string"
          },
          "baseUnit": {
            "type": "string"
          },
          "baseUnitCode": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "productionFullname": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "url": {
            "type": "string"
          },
          "color": {
            "type": "string"
          },
          "material": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "price1": {
            "type": "number"
          },
          "price2": {
            "type": "number"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "stock": {
            "type": "string"
          },
          "stockPlace": {
            "type": "string"
          },
          "itemGroup": {
            "type": "string"
          },
          "hasOperation": {
            "type": "boolean"
          },
          "stockNumber": {
            "type": "string"
          },
          "stockPlaceNumber": {
            "type": "string"
          },
          "dNumber": {
            "type": "string"
          },
          "mNumber": {
            "type": "number"
          },
          "parameter": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Location": {
        "title": "Location",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Operation": {
        "title": "Operation",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "posttime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "availableId": {
            "type": "string"
          },
          "duration": {
            "type": "string"
          },
          "durationPer": {
            "type": "string"
          },
          "search": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "departmentCode": {
            "type": "number"
          },
          "departmentName": {
            "type": "string"
          },
          "shortName": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "itemName": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "isExact": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "costByNumber": {
            "type": "number"
          },
          "costByTime": {
            "type": "number"
          },
          "sampleNumber": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isTiming": {
            "type": "boolean"
          }
        },
        "required": [
          "locationId"
        ],
        "additionalProperties": false
      },
      "OperationplanWithRelations": {
        "title": "OperationplanWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "reference": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "color": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "criticality": {
            "type": "number"
          },
          "delay": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "supplierId": {
            "type": "string"
          },
          "destinationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "originId": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batch": {
            "type": "string"
          },
          "quantityCompleted": {
            "type": "number"
          },
          "statusValid": {
            "type": "string"
          },
          "statusFeedback": {
            "type": "string"
          },
          "statusFeedbackVerify": {
            "type": "string"
          },
          "statusValidDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusFeedbackDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusFeedbackVerifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusValidPerson": {
            "type": "string"
          },
          "statusFeedbackPerson": {
            "type": "string"
          },
          "statusFeedbackVerifyPerson": {
            "type": "string"
          },
          "actualStartdate": {
            "type": "string",
            "format": "date-time"
          },
          "actualEnddate": {
            "type": "string",
            "format": "date-time"
          },
          "duration": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "actualDuration": {
            "type": "string"
          },
          "actualNetDuration": {
            "type": "string"
          },
          "progress": {
            "type": "number"
          },
          "resourceId": {
            "type": "string"
          },
          "operationPriority": {
            "type": "number"
          },
          "fullName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "qualifiedQuantity": {
            "type": "number"
          },
          "unqualifiedQuantity": {
            "type": "number"
          },
          "resourcePerson": {
            "type": "string"
          },
          "isArchive": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "isReschedule": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          },
          "isLock": {
            "type": "boolean"
          },
          "seq": {
            "type": "number"
          },
          "detail": {
            "type": "string"
          },
          "demand": {
            "$ref": "#/components/schemas/Demand"
          },
          "foreignKey": {},
          "item": {
            "$ref": "#/components/schemas/Item"
          },
          "location": {
            "$ref": "#/components/schemas/Location"
          },
          "operation": {
            "$ref": "#/components/schemas/Operation"
          },
          "operationplanresource": {
            "$ref": "#/components/schemas/Operationplanresource"
          },
          "operationplanmaterial": {
            "$ref": "#/components/schemas/Operationplanmaterial"
          },
          "resource": {
            "$ref": "#/components/schemas/Resource"
          }
        },
        "required": [
          "type",
          "quantity"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanWithRelations"
      },
      "OperationplanPartial": {
        "title": "OperationplanPartial",
        "type": "object",
        "description": "(tsType: Partial<Operationplan>, schemaOptions: { partial: true })",
        "properties": {
          "reference": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "color": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "criticality": {
            "type": "number"
          },
          "delay": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "supplierId": {
            "type": "string"
          },
          "destinationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "originId": {
            "type": "string"
          },
          "plan": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batch": {
            "type": "string"
          },
          "quantityCompleted": {
            "type": "number"
          },
          "statusValid": {
            "type": "string"
          },
          "statusFeedback": {
            "type": "string"
          },
          "statusFeedbackVerify": {
            "type": "string"
          },
          "statusValidDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusFeedbackDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusFeedbackVerifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "statusValidPerson": {
            "type": "string"
          },
          "statusFeedbackPerson": {
            "type": "string"
          },
          "statusFeedbackVerifyPerson": {
            "type": "string"
          },
          "actualStartdate": {
            "type": "string",
            "format": "date-time"
          },
          "actualEnddate": {
            "type": "string",
            "format": "date-time"
          },
          "duration": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "actualDuration": {
            "type": "string"
          },
          "actualNetDuration": {
            "type": "string"
          },
          "progress": {
            "type": "number"
          },
          "resourceId": {
            "type": "string"
          },
          "operationPriority": {
            "type": "number"
          },
          "fullName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "qualifiedQuantity": {
            "type": "number"
          },
          "unqualifiedQuantity": {
            "type": "number"
          },
          "resourcePerson": {
            "type": "string"
          },
          "isArchive": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "isReschedule": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          },
          "isLock": {
            "type": "boolean"
          },
          "seq": {
            "type": "number"
          },
          "detail": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Operationplan>"
      },
      "OperationplanTemp": {
        "title": "OperationplanTemp",
        "type": "object",
        "properties": {
          "reference": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewOperationplanTemp": {
        "title": "NewOperationplanTemp",
        "type": "object",
        "description": "(tsType: OperationplanTemp, schemaOptions: { title: 'NewOperationplanTemp' })",
        "properties": {
          "reference": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanTemp"
      },
      "OperationplanTempWithRelations": {
        "title": "OperationplanTempWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanTempWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "reference": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanTempWithRelations"
      },
      "OperationplanTempPartial": {
        "title": "OperationplanTempPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanTemp>, schemaOptions: { partial: true })",
        "properties": {
          "reference": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanTemp>"
      },
      "OperationplanQty": {
        "title": "OperationplanQty",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "completedDate": {
            "type": "string",
            "format": "date-time"
          },
          "operationplanReference": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "resourcePersonId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "startDate": {
            "type": "string",
            "format": "date-time"
          },
          "overTime": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "personJson": {
            "type": "string"
          },
          "isError": {
            "type": "boolean"
          },
          "isCasting": {
            "type": "boolean"
          },
          "oneWeight": {
            "type": "number"
          },
          "totalWeight": {
            "type": "number"
          },
          "castingLostRadio": {
            "type": "number"
          },
          "castingPrice": {
            "type": "number"
          },
          "pauseDuration": {
            "type": "string"
          },
          "validDuration": {
            "type": "string"
          },
          "versionCode": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewOperationplanQty": {
        "title": "NewOperationplanQty",
        "type": "object",
        "description": "(tsType: OperationplanQty, schemaOptions: { title: 'NewOperationplanQty' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "completedDate": {
            "type": "string",
            "format": "date-time"
          },
          "operationplanReference": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "resourcePersonId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "startDate": {
            "type": "string",
            "format": "date-time"
          },
          "overTime": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "personJson": {
            "type": "string"
          },
          "isError": {
            "type": "boolean"
          },
          "isCasting": {
            "type": "boolean"
          },
          "oneWeight": {
            "type": "number"
          },
          "totalWeight": {
            "type": "number"
          },
          "castingLostRadio": {
            "type": "number"
          },
          "castingPrice": {
            "type": "number"
          },
          "pauseDuration": {
            "type": "string"
          },
          "validDuration": {
            "type": "string"
          },
          "versionCode": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanQty"
      },
      "OperationplanQtyWithRelations": {
        "title": "OperationplanQtyWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanQtyWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "completedDate": {
            "type": "string",
            "format": "date-time"
          },
          "operationplanReference": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "resourcePersonId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "startDate": {
            "type": "string",
            "format": "date-time"
          },
          "overTime": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "personJson": {
            "type": "string"
          },
          "isError": {
            "type": "boolean"
          },
          "isCasting": {
            "type": "boolean"
          },
          "oneWeight": {
            "type": "number"
          },
          "totalWeight": {
            "type": "number"
          },
          "castingLostRadio": {
            "type": "number"
          },
          "castingPrice": {
            "type": "number"
          },
          "pauseDuration": {
            "type": "string"
          },
          "validDuration": {
            "type": "string"
          },
          "versionCode": {
            "type": "number"
          },
          "operationplan": {
            "$ref": "#/components/schemas/Operationplan"
          },
          "foreignKey": {},
          "resource": {
            "$ref": "#/components/schemas/Resource"
          },
          "operation": {
            "$ref": "#/components/schemas/Operation"
          },
          "demand": {
            "$ref": "#/components/schemas/Demand"
          },
          "item": {
            "$ref": "#/components/schemas/Item"
          },
          "location": {
            "$ref": "#/components/schemas/Location"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanQtyWithRelations"
      },
      "OperationplanQtyPartial": {
        "title": "OperationplanQtyPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanQty>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "completedDate": {
            "type": "string",
            "format": "date-time"
          },
          "operationplanReference": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "resourcePersonId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "startDate": {
            "type": "string",
            "format": "date-time"
          },
          "overTime": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "personJson": {
            "type": "string"
          },
          "isError": {
            "type": "boolean"
          },
          "isCasting": {
            "type": "boolean"
          },
          "oneWeight": {
            "type": "number"
          },
          "totalWeight": {
            "type": "number"
          },
          "castingLostRadio": {
            "type": "number"
          },
          "castingPrice": {
            "type": "number"
          },
          "pauseDuration": {
            "type": "string"
          },
          "validDuration": {
            "type": "string"
          },
          "versionCode": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanQty>"
      },
      "OperationplanQtyCopy": {
        "title": "OperationplanQtyCopy",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "completedDate": {
            "type": "string",
            "format": "date-time"
          },
          "operationplanReference": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "resourcePersonId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "startDate": {
            "type": "string",
            "format": "date-time"
          },
          "overTime": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "personJson": {
            "type": "string"
          },
          "personNumber": {
            "type": "number"
          },
          "idQty": {
            "type": "number"
          },
          "isError": {
            "type": "boolean"
          },
          "costByNumber": {
            "type": "number"
          },
          "costByTime": {
            "type": "number"
          },
          "isCasting": {
            "type": "boolean"
          },
          "oneWeight": {
            "type": "number"
          },
          "totalWeight": {
            "type": "number"
          },
          "castingLostRadio": {
            "type": "number"
          },
          "castingPrice": {
            "type": "number"
          },
          "costByNumberPer": {
            "type": "number"
          },
          "costByTimeYear": {
            "type": "number"
          },
          "costByTimeMonth": {
            "type": "number"
          },
          "netDurationPer": {
            "type": "string"
          },
          "costByTimeError": {
            "type": "boolean"
          },
          "pauseDuration": {
            "type": "string"
          },
          "validDuration": {
            "type": "string"
          },
          "costOther": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewOperationplanQtyCopy": {
        "title": "NewOperationplanQtyCopy",
        "type": "object",
        "description": "(tsType: OperationplanQtyCopy, schemaOptions: { title: 'NewOperationplanQtyCopy' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "completedDate": {
            "type": "string",
            "format": "date-time"
          },
          "operationplanReference": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "resourcePersonId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "startDate": {
            "type": "string",
            "format": "date-time"
          },
          "overTime": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "personJson": {
            "type": "string"
          },
          "personNumber": {
            "type": "number"
          },
          "idQty": {
            "type": "number"
          },
          "isError": {
            "type": "boolean"
          },
          "costByNumber": {
            "type": "number"
          },
          "costByTime": {
            "type": "number"
          },
          "isCasting": {
            "type": "boolean"
          },
          "oneWeight": {
            "type": "number"
          },
          "totalWeight": {
            "type": "number"
          },
          "castingLostRadio": {
            "type": "number"
          },
          "castingPrice": {
            "type": "number"
          },
          "costByNumberPer": {
            "type": "number"
          },
          "costByTimeYear": {
            "type": "number"
          },
          "costByTimeMonth": {
            "type": "number"
          },
          "netDurationPer": {
            "type": "string"
          },
          "costByTimeError": {
            "type": "boolean"
          },
          "pauseDuration": {
            "type": "string"
          },
          "validDuration": {
            "type": "string"
          },
          "costOther": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanQtyCopy"
      },
      "OperationplanQtyCopyWithRelations": {
        "title": "OperationplanQtyCopyWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanQtyCopyWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "completedDate": {
            "type": "string",
            "format": "date-time"
          },
          "operationplanReference": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "resourcePersonId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "startDate": {
            "type": "string",
            "format": "date-time"
          },
          "overTime": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "personJson": {
            "type": "string"
          },
          "personNumber": {
            "type": "number"
          },
          "idQty": {
            "type": "number"
          },
          "isError": {
            "type": "boolean"
          },
          "costByNumber": {
            "type": "number"
          },
          "costByTime": {
            "type": "number"
          },
          "isCasting": {
            "type": "boolean"
          },
          "oneWeight": {
            "type": "number"
          },
          "totalWeight": {
            "type": "number"
          },
          "castingLostRadio": {
            "type": "number"
          },
          "castingPrice": {
            "type": "number"
          },
          "costByNumberPer": {
            "type": "number"
          },
          "costByTimeYear": {
            "type": "number"
          },
          "costByTimeMonth": {
            "type": "number"
          },
          "netDurationPer": {
            "type": "string"
          },
          "costByTimeError": {
            "type": "boolean"
          },
          "pauseDuration": {
            "type": "string"
          },
          "validDuration": {
            "type": "string"
          },
          "costOther": {
            "type": "number"
          },
          "operationplan": {
            "$ref": "#/components/schemas/Operationplan"
          },
          "foreignKey": {},
          "resource": {
            "$ref": "#/components/schemas/Resource"
          },
          "operation": {
            "$ref": "#/components/schemas/Operation"
          },
          "demand": {
            "$ref": "#/components/schemas/Demand"
          },
          "item": {
            "$ref": "#/components/schemas/Item"
          },
          "location": {
            "$ref": "#/components/schemas/Location"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanQtyCopyWithRelations"
      },
      "OperationplanQtyCopyPartial": {
        "title": "OperationplanQtyCopyPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanQtyCopy>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "completedQuantity": {
            "type": "number"
          },
          "completedDate": {
            "type": "string",
            "format": "date-time"
          },
          "operationplanReference": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "resourcePersonId": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "startDate": {
            "type": "string",
            "format": "date-time"
          },
          "overTime": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "netDuration": {
            "type": "string"
          },
          "personJson": {
            "type": "string"
          },
          "personNumber": {
            "type": "number"
          },
          "idQty": {
            "type": "number"
          },
          "isError": {
            "type": "boolean"
          },
          "costByNumber": {
            "type": "number"
          },
          "costByTime": {
            "type": "number"
          },
          "isCasting": {
            "type": "boolean"
          },
          "oneWeight": {
            "type": "number"
          },
          "totalWeight": {
            "type": "number"
          },
          "castingLostRadio": {
            "type": "number"
          },
          "castingPrice": {
            "type": "number"
          },
          "costByNumberPer": {
            "type": "number"
          },
          "costByTimeYear": {
            "type": "number"
          },
          "costByTimeMonth": {
            "type": "number"
          },
          "netDurationPer": {
            "type": "string"
          },
          "costByTimeError": {
            "type": "boolean"
          },
          "pauseDuration": {
            "type": "string"
          },
          "validDuration": {
            "type": "string"
          },
          "costOther": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanQtyCopy>"
      },
      "OperationplanPause": {
        "title": "OperationplanPause",
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "pausedate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "restartdate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "netDuration": {
            "type": "string",
            "nullable": true
          },
          "isUse": {
            "type": "boolean",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false
      },
      "NewOperationplanPause": {
        "title": "NewOperationplanPause",
        "type": "object",
        "description": "(tsType: OperationplanPause, schemaOptions: { title: 'NewOperationplanPause' })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "pausedate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "restartdate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "netDuration": {
            "type": "string",
            "nullable": true
          },
          "isUse": {
            "type": "boolean",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanPause"
      },
      "OperationplanPauseWithRelations": {
        "title": "OperationplanPauseWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanPauseWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "pausedate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "restartdate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "netDuration": {
            "type": "string",
            "nullable": true
          },
          "isUse": {
            "type": "boolean",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanPauseWithRelations"
      },
      "OperationplanPausePartial": {
        "title": "OperationplanPausePartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanPause>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "pausedate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "restartdate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "netDuration": {
            "type": "string",
            "nullable": true
          },
          "isUse": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanPause>"
      },
      "NewOperationplanresourceInOperationplan": {
        "title": "NewOperationplanresourceInOperationplan",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Operationplanresource, 'id'>, 'operationplanId'>, schemaOptions: { title: 'NewOperationplanresourceInOperationplan', exclude: [ 'id' ], optional: [ 'operationplanId' ] })",
        "properties": {
          "operationplanId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "setup": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "resourceId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Operationplanresource, 'id'>, 'operationplanId'>"
      },
      "NewOperationplanmaterialInOperationplan": {
        "title": "NewOperationplanmaterialInOperationplan",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Operationplanmaterial, 'id'>, 'operationplanId'>, schemaOptions: { title: 'NewOperationplanmaterialInOperationplan', exclude: [ 'id' ], optional: [ 'operationplanId' ] })",
        "properties": {
          "operationplanId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "flowdate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "onhand": {
            "type": "number"
          },
          "minimum": {
            "type": "number"
          },
          "periodofcover": {
            "type": "number"
          },
          "status": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "itemId",
          "locationId",
          "flowdate",
          "quantity"
        ],
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Operationplanmaterial, 'id'>, 'operationplanId'>"
      },
      "OperationplanLogs": {
        "title": "OperationplanLogs",
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "statusFeedback": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false
      },
      "NewOperationplanLogs": {
        "title": "NewOperationplanLogs",
        "type": "object",
        "description": "(tsType: OperationplanLogs, schemaOptions: { title: 'NewOperationplanLogs' })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "statusFeedback": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanLogs"
      },
      "OperationplanLogsWithRelations": {
        "title": "OperationplanLogsWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanLogsWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "statusFeedback": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanLogsWithRelations"
      },
      "OperationplanLogsPartial": {
        "title": "OperationplanLogsPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanLogs>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "statusFeedback": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanLogs>"
      },
      "OperationplanFinish": {
        "title": "OperationplanFinish",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "NewOperationplanFinish": {
        "title": "NewOperationplanFinish",
        "type": "object",
        "description": "(tsType: OperationplanFinish, schemaOptions: { title: 'NewOperationplanFinish' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanFinish"
      },
      "OperationplanFinishWithRelations": {
        "title": "OperationplanFinishWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanFinishWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "isError": {
            "type": "boolean"
          },
          "demand": {
            "$ref": "#/components/schemas/Demand"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanFinishWithRelations"
      },
      "OperationplanFinishPartial": {
        "title": "OperationplanFinishPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanFinish>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanFinish>"
      },
      "OperationplanDefective": {
        "title": "OperationplanDefective",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "reason": {
            "type": "string"
          },
          "suggest": {
            "type": "string"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "NewOperationplanDefective": {
        "title": "NewOperationplanDefective",
        "type": "object",
        "description": "(tsType: OperationplanDefective, schemaOptions: { title: 'NewOperationplanDefective' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "reason": {
            "type": "string"
          },
          "suggest": {
            "type": "string"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanDefective"
      },
      "OperationplanDefectiveWithRelations": {
        "title": "OperationplanDefectiveWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanDefectiveWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "reason": {
            "type": "string"
          },
          "suggest": {
            "type": "string"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanDefectiveWithRelations"
      },
      "OperationplanDefectivePartial": {
        "title": "OperationplanDefectivePartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanDefective>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "quantity": {
            "type": "number"
          },
          "reason": {
            "type": "string"
          },
          "suggest": {
            "type": "string"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanDefective>"
      },
      "OperationplanComponent": {
        "title": "OperationplanComponent",
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "materialCode": {
            "type": "string",
            "nullable": true
          },
          "materialRadio": {
            "type": "number",
            "nullable": true
          },
          "quantity": {
            "type": "number",
            "nullable": true
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "resourceId": {
            "type": "string",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "resourcePersonId": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "locationId": {
            "type": "string",
            "nullable": true
          },
          "itemId": {
            "type": "string",
            "nullable": true
          },
          "personJson": {
            "type": "string",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false
      },
      "NewOperationplanComponent": {
        "title": "NewOperationplanComponent",
        "type": "object",
        "description": "(tsType: OperationplanComponent, schemaOptions: { title: 'NewOperationplanComponent' })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "materialCode": {
            "type": "string",
            "nullable": true
          },
          "materialRadio": {
            "type": "number",
            "nullable": true
          },
          "quantity": {
            "type": "number",
            "nullable": true
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "resourceId": {
            "type": "string",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "resourcePersonId": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "locationId": {
            "type": "string",
            "nullable": true
          },
          "itemId": {
            "type": "string",
            "nullable": true
          },
          "personJson": {
            "type": "string",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanComponent"
      },
      "OperationplanComponentWithRelations": {
        "title": "OperationplanComponentWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanComponentWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "materialCode": {
            "type": "string",
            "nullable": true
          },
          "materialRadio": {
            "type": "number",
            "nullable": true
          },
          "quantity": {
            "type": "number",
            "nullable": true
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "resourceId": {
            "type": "string",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "resourcePersonId": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "locationId": {
            "type": "string",
            "nullable": true
          },
          "itemId": {
            "type": "string",
            "nullable": true
          },
          "personJson": {
            "type": "string",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanComponentWithRelations"
      },
      "OperationplanComponentPartial": {
        "title": "OperationplanComponentPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanComponent>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "materialCode": {
            "type": "string",
            "nullable": true
          },
          "materialRadio": {
            "type": "number",
            "nullable": true
          },
          "quantity": {
            "type": "number",
            "nullable": true
          },
          "operationplanReference": {
            "type": "string",
            "nullable": true
          },
          "resourceId": {
            "type": "string",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "resourcePersonId": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "locationId": {
            "type": "string",
            "nullable": true
          },
          "itemId": {
            "type": "string",
            "nullable": true
          },
          "personJson": {
            "type": "string",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanComponent>"
      },
      "OperationplanCheck": {
        "title": "OperationplanCheck",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "checkType": {
            "type": "number"
          },
          "operationplanReference": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "isSample": {
            "type": "boolean"
          },
          "sampleRemark": {
            "type": "string"
          },
          "isOrder": {
            "type": "boolean"
          },
          "orderRemark": {
            "type": "string"
          },
          "isQty": {
            "type": "boolean"
          },
          "qtyRemark": {
            "type": "string"
          },
          "isMaterial": {
            "type": "boolean"
          },
          "materialRemark": {
            "type": "string"
          },
          "isSpec": {
            "type": "boolean"
          },
          "specRemark": {
            "type": "string"
          },
          "isColor": {
            "type": "boolean"
          },
          "colorRemark": {
            "type": "string"
          },
          "isTool": {
            "type": "boolean"
          },
          "isOutward": {
            "type": "boolean"
          },
          "outwardType": {
            "type": "number"
          },
          "outwardRemark": {
            "type": "string"
          },
          "imagesJson": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "required": [
          "isSample",
          "isOrder",
          "isQty",
          "isMaterial",
          "isSpec",
          "isColor",
          "isTool",
          "isOutward"
        ],
        "additionalProperties": false
      },
      "NewOperationplanCheck": {
        "title": "NewOperationplanCheck",
        "type": "object",
        "description": "(tsType: OperationplanCheck, schemaOptions: { title: 'NewOperationplanCheck' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "checkType": {
            "type": "number"
          },
          "operationplanReference": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "isSample": {
            "type": "boolean"
          },
          "sampleRemark": {
            "type": "string"
          },
          "isOrder": {
            "type": "boolean"
          },
          "orderRemark": {
            "type": "string"
          },
          "isQty": {
            "type": "boolean"
          },
          "qtyRemark": {
            "type": "string"
          },
          "isMaterial": {
            "type": "boolean"
          },
          "materialRemark": {
            "type": "string"
          },
          "isSpec": {
            "type": "boolean"
          },
          "specRemark": {
            "type": "string"
          },
          "isColor": {
            "type": "boolean"
          },
          "colorRemark": {
            "type": "string"
          },
          "isTool": {
            "type": "boolean"
          },
          "isOutward": {
            "type": "boolean"
          },
          "outwardType": {
            "type": "number"
          },
          "outwardRemark": {
            "type": "string"
          },
          "imagesJson": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "required": [
          "isSample",
          "isOrder",
          "isQty",
          "isMaterial",
          "isSpec",
          "isColor",
          "isTool",
          "isOutward"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanCheck"
      },
      "OperationplanCheckWithRelations": {
        "title": "OperationplanCheckWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanCheckWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "checkType": {
            "type": "number"
          },
          "operationplanReference": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "isSample": {
            "type": "boolean"
          },
          "sampleRemark": {
            "type": "string"
          },
          "isOrder": {
            "type": "boolean"
          },
          "orderRemark": {
            "type": "string"
          },
          "isQty": {
            "type": "boolean"
          },
          "qtyRemark": {
            "type": "string"
          },
          "isMaterial": {
            "type": "boolean"
          },
          "materialRemark": {
            "type": "string"
          },
          "isSpec": {
            "type": "boolean"
          },
          "specRemark": {
            "type": "string"
          },
          "isColor": {
            "type": "boolean"
          },
          "colorRemark": {
            "type": "string"
          },
          "isTool": {
            "type": "boolean"
          },
          "isOutward": {
            "type": "boolean"
          },
          "outwardType": {
            "type": "number"
          },
          "outwardRemark": {
            "type": "string"
          },
          "imagesJson": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "required": [
          "isSample",
          "isOrder",
          "isQty",
          "isMaterial",
          "isSpec",
          "isColor",
          "isTool",
          "isOutward"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationplanCheckWithRelations"
      },
      "OperationplanCheckPartial": {
        "title": "OperationplanCheckPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanCheck>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "checkType": {
            "type": "number"
          },
          "operationplanReference": {
            "type": "string"
          },
          "operationId": {
            "type": "string"
          },
          "isSample": {
            "type": "boolean"
          },
          "sampleRemark": {
            "type": "string"
          },
          "isOrder": {
            "type": "boolean"
          },
          "orderRemark": {
            "type": "string"
          },
          "isQty": {
            "type": "boolean"
          },
          "qtyRemark": {
            "type": "string"
          },
          "isMaterial": {
            "type": "boolean"
          },
          "materialRemark": {
            "type": "string"
          },
          "isSpec": {
            "type": "boolean"
          },
          "specRemark": {
            "type": "string"
          },
          "isColor": {
            "type": "boolean"
          },
          "colorRemark": {
            "type": "string"
          },
          "isTool": {
            "type": "boolean"
          },
          "isOutward": {
            "type": "boolean"
          },
          "outwardType": {
            "type": "number"
          },
          "outwardRemark": {
            "type": "string"
          },
          "imagesJson": {
            "type": "string"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanCheck>"
      },
      "OperationplanBom": {
        "title": "OperationplanBom",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          },
          "operationId": {
            "type": "string"
          },
          "costPrice": {
            "type": "number"
          },
          "isExcept": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "NewOperationplanBom": {
        "title": "NewOperationplanBom",
        "type": "object",
        "description": "(tsType: OperationplanBom, schemaOptions: { title: 'NewOperationplanBom' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          },
          "operationId": {
            "type": "string"
          },
          "costPrice": {
            "type": "number"
          },
          "isExcept": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanBom"
      },
      "OperationplanBomWithRelations": {
        "title": "OperationplanBomWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanBomWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          },
          "operationId": {
            "type": "string"
          },
          "costPrice": {
            "type": "number"
          },
          "isExcept": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanBomWithRelations"
      },
      "OperationplanBomPartial": {
        "title": "OperationplanBomPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanBom>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "isError": {
            "type": "boolean"
          },
          "operationId": {
            "type": "string"
          },
          "costPrice": {
            "type": "number"
          },
          "isExcept": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanBom>"
      },
      "OperationplanBomPrice": {
        "title": "OperationplanBomPrice",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "costPrice": {
            "type": "number"
          },
          "iserror": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "NewOperationplanBomPrice": {
        "title": "NewOperationplanBomPrice",
        "type": "object",
        "description": "(tsType: OperationplanBomPrice, schemaOptions: { title: 'NewOperationplanBomPrice' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "costPrice": {
            "type": "number"
          },
          "iserror": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanBomPrice"
      },
      "OperationplanBomPriceWithRelations": {
        "title": "OperationplanBomPriceWithRelations",
        "type": "object",
        "description": "(tsType: OperationplanBomPriceWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "costPrice": {
            "type": "number"
          },
          "iserror": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationplanBomPriceWithRelations"
      },
      "OperationplanBomPricePartial": {
        "title": "OperationplanBomPricePartial",
        "type": "object",
        "description": "(tsType: Partial<OperationplanBomPrice>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "billNo": {
            "type": "string"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "demandId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "costPrice": {
            "type": "number"
          },
          "iserror": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationplanBomPrice>"
      },
      "Operationmaterial": {
        "title": "Operationmaterial",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "quantityFixed": {
            "type": "number"
          },
          "transferbatch": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "search": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "offset": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationId",
          "itemId"
        ],
        "additionalProperties": false
      },
      "NewOperationmaterial": {
        "title": "NewOperationmaterial",
        "type": "object",
        "description": "(tsType: Operationmaterial, schemaOptions: { title: 'NewOperationmaterial' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "quantityFixed": {
            "type": "number"
          },
          "transferbatch": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "search": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "offset": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationId",
          "itemId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Operationmaterial"
      },
      "OperationmaterialWithRelations": {
        "title": "OperationmaterialWithRelations",
        "type": "object",
        "description": "(tsType: OperationmaterialWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "quantityFixed": {
            "type": "number"
          },
          "transferbatch": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "search": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "offset": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "operationId",
          "itemId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationmaterialWithRelations"
      },
      "OperationmaterialPartial": {
        "title": "OperationmaterialPartial",
        "type": "object",
        "description": "(tsType: Partial<Operationmaterial>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "quantityFixed": {
            "type": "number"
          },
          "transferbatch": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "search": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "offset": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Operationmaterial>"
      },
      "NewOperation": {
        "title": "NewOperation",
        "type": "object",
        "description": "(tsType: Operation, schemaOptions: { title: 'NewOperation' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "posttime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "availableId": {
            "type": "string"
          },
          "duration": {
            "type": "string"
          },
          "durationPer": {
            "type": "string"
          },
          "search": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "departmentCode": {
            "type": "number"
          },
          "departmentName": {
            "type": "string"
          },
          "shortName": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "itemName": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "isExact": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "costByNumber": {
            "type": "number"
          },
          "costByTime": {
            "type": "number"
          },
          "sampleNumber": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isTiming": {
            "type": "boolean"
          }
        },
        "required": [
          "locationId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Operation"
      },
      "OperationWithRelations": {
        "title": "OperationWithRelations",
        "type": "object",
        "description": "(tsType: OperationWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "posttime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "availableId": {
            "type": "string"
          },
          "duration": {
            "type": "string"
          },
          "durationPer": {
            "type": "string"
          },
          "search": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "departmentCode": {
            "type": "number"
          },
          "departmentName": {
            "type": "string"
          },
          "shortName": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "itemName": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "isExact": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "costByNumber": {
            "type": "number"
          },
          "costByTime": {
            "type": "number"
          },
          "sampleNumber": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isTiming": {
            "type": "boolean"
          },
          "location": {
            "$ref": "#/components/schemas/Location"
          },
          "foreignKey": {},
          "item": {
            "$ref": "#/components/schemas/Item"
          }
        },
        "required": [
          "locationId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationWithRelations"
      },
      "OperationPartial": {
        "title": "OperationPartial",
        "type": "object",
        "description": "(tsType: Partial<Operation>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "posttime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "availableId": {
            "type": "string"
          },
          "duration": {
            "type": "string"
          },
          "durationPer": {
            "type": "string"
          },
          "search": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "departmentCode": {
            "type": "number"
          },
          "departmentName": {
            "type": "string"
          },
          "shortName": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "itemName": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "isExact": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          },
          "costByNumber": {
            "type": "number"
          },
          "costByTime": {
            "type": "number"
          },
          "sampleNumber": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isTiming": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Operation>"
      },
      "OperationRoutingName": {
        "title": "OperationRoutingName",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationRouting": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "NewOperationRoutingName": {
        "title": "NewOperationRoutingName",
        "type": "object",
        "description": "(tsType: OperationRoutingName, schemaOptions: { title: 'NewOperationRoutingName' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationRouting": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationRoutingName"
      },
      "OperationRoutingNameWithRelations": {
        "title": "OperationRoutingNameWithRelations",
        "type": "object",
        "description": "(tsType: OperationRoutingNameWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationRouting": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationRoutingNameWithRelations"
      },
      "OperationRoutingNamePartial": {
        "title": "OperationRoutingNamePartial",
        "type": "object",
        "description": "(tsType: Partial<OperationRoutingName>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationRouting": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationRoutingName>"
      },
      "OperationRoutingLabel": {
        "title": "OperationRoutingLabel",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationRouting": {
            "type": "number"
          },
          "operationLabel": {
            "type": "number"
          },
          "sequence": {
            "type": "number"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "NewOperationRoutingLabel": {
        "title": "NewOperationRoutingLabel",
        "type": "object",
        "description": "(tsType: OperationRoutingLabel, schemaOptions: { title: 'NewOperationRoutingLabel' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationRouting": {
            "type": "number"
          },
          "operationLabel": {
            "type": "number"
          },
          "sequence": {
            "type": "number"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationRoutingLabel"
      },
      "OperationRoutingLabelWithRelations": {
        "title": "OperationRoutingLabelWithRelations",
        "type": "object",
        "description": "(tsType: OperationRoutingLabelWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationRouting": {
            "type": "number"
          },
          "operationLabel": {
            "type": "number"
          },
          "sequence": {
            "type": "number"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperationRoutingLabelWithRelations"
      },
      "OperationRoutingLabelPartial": {
        "title": "OperationRoutingLabelPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationRoutingLabel>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationRouting": {
            "type": "number"
          },
          "operationLabel": {
            "type": "number"
          },
          "sequence": {
            "type": "number"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationRoutingLabel>"
      },
      "OperationRecord": {
        "title": "OperationRecord",
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "operationplan": {
            "type": "string",
            "nullable": true
          },
          "operation": {
            "type": "string",
            "nullable": true
          },
          "actualStartdate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "actualEnddate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "actualDuration": {
            "type": "string",
            "nullable": true
          },
          "actualNetDuration": {
            "type": "string",
            "nullable": true
          },
          "completedQuantity": {
            "type": "number",
            "nullable": true
          },
          "durationPer": {
            "type": "string",
            "nullable": true
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time",
            "nullable": false
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          }
        },
        "required": [
          "id",
          "lastmodified"
        ],
        "description": "{\"indexInfo\":{\"operationplan\":{\"unique\":true},\"operation\":{\"operation\":{\"unique\":true}}}}",
        "additionalProperties": false
      },
      "NewOperationRecord": {
        "title": "NewOperationRecord",
        "type": "object",
        "description": "(tsType: OperationRecord, schemaOptions: { title: 'NewOperationRecord' }), , {\"indexInfo\":{\"operationplan\":{\"unique\":true},\"operation\":{\"operation\":{\"unique\":true}}}}",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "operationplan": {
            "type": "string",
            "nullable": true
          },
          "operation": {
            "type": "string",
            "nullable": true
          },
          "actualStartdate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "actualEnddate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "actualDuration": {
            "type": "string",
            "nullable": true
          },
          "actualNetDuration": {
            "type": "string",
            "nullable": true
          },
          "completedQuantity": {
            "type": "number",
            "nullable": true
          },
          "durationPer": {
            "type": "string",
            "nullable": true
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time",
            "nullable": false
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          }
        },
        "required": [
          "id",
          "lastmodified"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationRecord"
      },
      "OperationRecordWithRelations": {
        "title": "OperationRecordWithRelations",
        "type": "object",
        "description": "(tsType: OperationRecordWithRelations, schemaOptions: { includeRelations: true }), , {\"indexInfo\":{\"operationplan\":{\"unique\":true},\"operation\":{\"operation\":{\"unique\":true}}}}",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "operationplan": {
            "type": "string",
            "nullable": true
          },
          "operation": {
            "type": "string",
            "nullable": true
          },
          "actualStartdate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "actualEnddate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "actualDuration": {
            "type": "string",
            "nullable": true
          },
          "actualNetDuration": {
            "type": "string",
            "nullable": true
          },
          "completedQuantity": {
            "type": "number",
            "nullable": true
          },
          "durationPer": {
            "type": "string",
            "nullable": true
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time",
            "nullable": false
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          }
        },
        "required": [
          "id",
          "lastmodified"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationRecordWithRelations"
      },
      "OperationRecordPartial": {
        "title": "OperationRecordPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationRecord>, schemaOptions: { partial: true }), , {\"indexInfo\":{\"operationplan\":{\"unique\":true},\"operation\":{\"operation\":{\"unique\":true}}}}",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "operationplan": {
            "type": "string",
            "nullable": true
          },
          "operation": {
            "type": "string",
            "nullable": true
          },
          "actualStartdate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "actualEnddate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "actualDuration": {
            "type": "string",
            "nullable": true
          },
          "actualNetDuration": {
            "type": "string",
            "nullable": true
          },
          "completedQuantity": {
            "type": "number",
            "nullable": true
          },
          "durationPer": {
            "type": "string",
            "nullable": true
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time",
            "nullable": false
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isError": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationRecord>"
      },
      "OperationLabel": {
        "title": "OperationLabel",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationGroup": {
            "type": "string"
          },
          "operationLabel": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "durationPerMedian": {
            "type": "string"
          },
          "departmentCode": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          }
        },
        "required": [
          "lastmodified"
        ],
        "additionalProperties": false
      },
      "NewOperationLabel": {
        "title": "NewOperationLabel",
        "type": "object",
        "description": "(tsType: OperationLabel, schemaOptions: { title: 'NewOperationLabel' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationGroup": {
            "type": "string"
          },
          "operationLabel": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "durationPerMedian": {
            "type": "string"
          },
          "departmentCode": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          }
        },
        "required": [
          "lastmodified"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationLabel"
      },
      "OperationLabelWithRelations": {
        "title": "OperationLabelWithRelations",
        "type": "object",
        "description": "(tsType: OperationLabelWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationGroup": {
            "type": "string"
          },
          "operationLabel": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "durationPerMedian": {
            "type": "string"
          },
          "departmentCode": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          }
        },
        "required": [
          "lastmodified"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationLabelWithRelations"
      },
      "OperationLabelPartial": {
        "title": "OperationLabelPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationLabel>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "operationGroup": {
            "type": "string"
          },
          "operationLabel": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "durationPerMedian": {
            "type": "string"
          },
          "departmentCode": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationLabel>"
      },
      "OperationCostbynumber": {
        "title": "OperationCostbynumber",
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "costByNumber": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false
      },
      "NewOperationCostbynumber": {
        "title": "NewOperationCostbynumber",
        "type": "object",
        "description": "(tsType: OperationCostbynumber, schemaOptions: { title: 'NewOperationCostbynumber' })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "costByNumber": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationCostbynumber"
      },
      "OperationCostbynumberWithRelations": {
        "title": "OperationCostbynumberWithRelations",
        "type": "object",
        "description": "(tsType: OperationCostbynumberWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "costByNumber": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "OperationCostbynumberWithRelations"
      },
      "OperationCostbynumberPartial": {
        "title": "OperationCostbynumberPartial",
        "type": "object",
        "description": "(tsType: Partial<OperationCostbynumber>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "billDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "userId": {
            "type": "number",
            "nullable": true
          },
          "userName": {
            "type": "string",
            "nullable": true
          },
          "operationId": {
            "type": "string",
            "nullable": true
          },
          "costByNumber": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperationCostbynumber>"
      },
      "NewLocation": {
        "title": "NewLocation",
        "type": "object",
        "description": "(tsType: Location, schemaOptions: { title: 'NewLocation' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Location"
      },
      "LocationWithRelations": {
        "title": "LocationWithRelations",
        "type": "object",
        "description": "(tsType: LocationWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "LocationWithRelations"
      },
      "LocationPartial": {
        "title": "LocationPartial",
        "type": "object",
        "description": "(tsType: Partial<Location>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "availableId": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Location>"
      },
      "K3VIcStockBillList": {
        "title": "K3VIcStockBillList",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3VIcStockBillList": {
        "title": "NewK3VIcStockBillList",
        "type": "object",
        "description": "(tsType: K3VIcStockBillList, schemaOptions: { title: 'NewK3VIcStockBillList' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3VIcStockBillList"
      },
      "K3VIcStockBillListWithRelations": {
        "title": "K3VIcStockBillListWithRelations",
        "type": "object",
        "description": "(tsType: K3VIcStockBillListWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3VIcStockBillListWithRelations"
      },
      "K3VIcStockBillListPartial": {
        "title": "K3VIcStockBillListPartial",
        "type": "object",
        "description": "(tsType: Partial<K3VIcStockBillList>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3VIcStockBillList>"
      },
      "K3TVoucher": {
        "title": "K3TVoucher",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fVoucherId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fYear": {
            "type": "number",
            "nullable": true
          },
          "fPeriod": {
            "type": "number",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "number",
            "nullable": true
          },
          "fReference": {
            "type": "string",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fAttachments": {
            "type": "number",
            "nullable": true
          },
          "fEntryCount": {
            "type": "number",
            "nullable": true
          },
          "fDebitTotal": {
            "type": "string",
            "nullable": true
          },
          "fCreditTotal": {
            "type": "string",
            "nullable": true
          },
          "fInternalInd": {
            "type": "string",
            "nullable": true
          },
          "fChecked": {
            "type": "boolean",
            "nullable": true
          },
          "fPosted": {
            "type": "boolean",
            "nullable": true
          },
          "fPreparerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fPosterId": {
            "type": "number",
            "nullable": true
          },
          "fCashierId": {
            "type": "number",
            "nullable": true
          },
          "fHandler": {
            "type": "string",
            "nullable": true
          },
          "fOwnerGroupId": {
            "type": "number",
            "nullable": true
          },
          "fObjectName": {
            "type": "string",
            "nullable": true
          },
          "fParameter": {
            "type": "string",
            "nullable": true
          },
          "fSerialNum": {
            "type": "number",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fTransDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFrameWorkId": {
            "type": "number",
            "nullable": true
          },
          "fApproveId": {
            "type": "number",
            "nullable": true
          },
          "fFootNote": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fLink": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TVoucher": {
        "title": "NewK3TVoucher",
        "type": "object",
        "description": "(tsType: K3TVoucher, schemaOptions: { title: 'NewK3TVoucher' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fVoucherId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fYear": {
            "type": "number",
            "nullable": true
          },
          "fPeriod": {
            "type": "number",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "number",
            "nullable": true
          },
          "fReference": {
            "type": "string",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fAttachments": {
            "type": "number",
            "nullable": true
          },
          "fEntryCount": {
            "type": "number",
            "nullable": true
          },
          "fDebitTotal": {
            "type": "string",
            "nullable": true
          },
          "fCreditTotal": {
            "type": "string",
            "nullable": true
          },
          "fInternalInd": {
            "type": "string",
            "nullable": true
          },
          "fChecked": {
            "type": "boolean",
            "nullable": true
          },
          "fPosted": {
            "type": "boolean",
            "nullable": true
          },
          "fPreparerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fPosterId": {
            "type": "number",
            "nullable": true
          },
          "fCashierId": {
            "type": "number",
            "nullable": true
          },
          "fHandler": {
            "type": "string",
            "nullable": true
          },
          "fOwnerGroupId": {
            "type": "number",
            "nullable": true
          },
          "fObjectName": {
            "type": "string",
            "nullable": true
          },
          "fParameter": {
            "type": "string",
            "nullable": true
          },
          "fSerialNum": {
            "type": "number",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fTransDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFrameWorkId": {
            "type": "number",
            "nullable": true
          },
          "fApproveId": {
            "type": "number",
            "nullable": true
          },
          "fFootNote": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fLink": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TVoucher"
      },
      "K3TVoucherWithRelations": {
        "title": "K3TVoucherWithRelations",
        "type": "object",
        "description": "(tsType: K3TVoucherWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fVoucherId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fYear": {
            "type": "number",
            "nullable": true
          },
          "fPeriod": {
            "type": "number",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "number",
            "nullable": true
          },
          "fReference": {
            "type": "string",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fAttachments": {
            "type": "number",
            "nullable": true
          },
          "fEntryCount": {
            "type": "number",
            "nullable": true
          },
          "fDebitTotal": {
            "type": "string",
            "nullable": true
          },
          "fCreditTotal": {
            "type": "string",
            "nullable": true
          },
          "fInternalInd": {
            "type": "string",
            "nullable": true
          },
          "fChecked": {
            "type": "boolean",
            "nullable": true
          },
          "fPosted": {
            "type": "boolean",
            "nullable": true
          },
          "fPreparerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fPosterId": {
            "type": "number",
            "nullable": true
          },
          "fCashierId": {
            "type": "number",
            "nullable": true
          },
          "fHandler": {
            "type": "string",
            "nullable": true
          },
          "fOwnerGroupId": {
            "type": "number",
            "nullable": true
          },
          "fObjectName": {
            "type": "string",
            "nullable": true
          },
          "fParameter": {
            "type": "string",
            "nullable": true
          },
          "fSerialNum": {
            "type": "number",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fTransDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFrameWorkId": {
            "type": "number",
            "nullable": true
          },
          "fApproveId": {
            "type": "number",
            "nullable": true
          },
          "fFootNote": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fLink": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TVoucherWithRelations"
      },
      "K3TVoucherPartial": {
        "title": "K3TVoucherPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TVoucher>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fVoucherId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fYear": {
            "type": "number",
            "nullable": true
          },
          "fPeriod": {
            "type": "number",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "number",
            "nullable": true
          },
          "fReference": {
            "type": "string",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fAttachments": {
            "type": "number",
            "nullable": true
          },
          "fEntryCount": {
            "type": "number",
            "nullable": true
          },
          "fDebitTotal": {
            "type": "string",
            "nullable": true
          },
          "fCreditTotal": {
            "type": "string",
            "nullable": true
          },
          "fInternalInd": {
            "type": "string",
            "nullable": true
          },
          "fChecked": {
            "type": "boolean",
            "nullable": true
          },
          "fPosted": {
            "type": "boolean",
            "nullable": true
          },
          "fPreparerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fPosterId": {
            "type": "number",
            "nullable": true
          },
          "fCashierId": {
            "type": "number",
            "nullable": true
          },
          "fHandler": {
            "type": "string",
            "nullable": true
          },
          "fOwnerGroupId": {
            "type": "number",
            "nullable": true
          },
          "fObjectName": {
            "type": "string",
            "nullable": true
          },
          "fParameter": {
            "type": "string",
            "nullable": true
          },
          "fSerialNum": {
            "type": "number",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fTransDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFrameWorkId": {
            "type": "number",
            "nullable": true
          },
          "fApproveId": {
            "type": "number",
            "nullable": true
          },
          "fFootNote": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fLink": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TVoucher>"
      },
      "K3TVoucherEntry": {
        "title": "K3TVoucherEntry",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fVoucherId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fAccountId": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fdc": {
            "type": "number",
            "nullable": true
          },
          "fAmountFor": {
            "type": "string",
            "nullable": true
          },
          "fAmount": {
            "type": "string",
            "nullable": true
          },
          "fQuantity": {
            "type": "number",
            "nullable": true
          },
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitPrice": {
            "type": "number",
            "nullable": true
          },
          "fInternalInd": {
            "type": "string",
            "nullable": true
          },
          "fAccountId2": {
            "type": "number",
            "nullable": true
          },
          "fSettleTypeId": {
            "type": "number",
            "nullable": true
          },
          "fSettleNo": {
            "type": "string",
            "nullable": true
          },
          "fTransNo": {
            "type": "string",
            "nullable": true
          },
          "fCashFlowItem": {
            "type": "number",
            "nullable": true
          },
          "fTaskId": {
            "type": "number",
            "nullable": true
          },
          "fResourceId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fSideEntryId": {
            "type": "number",
            "nullable": true
          },
          "fIsBalance": {
            "type": "boolean",
            "nullable": true
          },
          "fBalanceGroupId": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TVoucherEntry": {
        "title": "NewK3TVoucherEntry",
        "type": "object",
        "description": "(tsType: K3TVoucherEntry, schemaOptions: { title: 'NewK3TVoucherEntry' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fVoucherId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fAccountId": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fdc": {
            "type": "number",
            "nullable": true
          },
          "fAmountFor": {
            "type": "string",
            "nullable": true
          },
          "fAmount": {
            "type": "string",
            "nullable": true
          },
          "fQuantity": {
            "type": "number",
            "nullable": true
          },
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitPrice": {
            "type": "number",
            "nullable": true
          },
          "fInternalInd": {
            "type": "string",
            "nullable": true
          },
          "fAccountId2": {
            "type": "number",
            "nullable": true
          },
          "fSettleTypeId": {
            "type": "number",
            "nullable": true
          },
          "fSettleNo": {
            "type": "string",
            "nullable": true
          },
          "fTransNo": {
            "type": "string",
            "nullable": true
          },
          "fCashFlowItem": {
            "type": "number",
            "nullable": true
          },
          "fTaskId": {
            "type": "number",
            "nullable": true
          },
          "fResourceId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fSideEntryId": {
            "type": "number",
            "nullable": true
          },
          "fIsBalance": {
            "type": "boolean",
            "nullable": true
          },
          "fBalanceGroupId": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TVoucherEntry"
      },
      "K3TVoucherEntryWithRelations": {
        "title": "K3TVoucherEntryWithRelations",
        "type": "object",
        "description": "(tsType: K3TVoucherEntryWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fVoucherId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fAccountId": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fdc": {
            "type": "number",
            "nullable": true
          },
          "fAmountFor": {
            "type": "string",
            "nullable": true
          },
          "fAmount": {
            "type": "string",
            "nullable": true
          },
          "fQuantity": {
            "type": "number",
            "nullable": true
          },
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitPrice": {
            "type": "number",
            "nullable": true
          },
          "fInternalInd": {
            "type": "string",
            "nullable": true
          },
          "fAccountId2": {
            "type": "number",
            "nullable": true
          },
          "fSettleTypeId": {
            "type": "number",
            "nullable": true
          },
          "fSettleNo": {
            "type": "string",
            "nullable": true
          },
          "fTransNo": {
            "type": "string",
            "nullable": true
          },
          "fCashFlowItem": {
            "type": "number",
            "nullable": true
          },
          "fTaskId": {
            "type": "number",
            "nullable": true
          },
          "fResourceId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fSideEntryId": {
            "type": "number",
            "nullable": true
          },
          "fIsBalance": {
            "type": "boolean",
            "nullable": true
          },
          "fBalanceGroupId": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TVoucherEntryWithRelations"
      },
      "K3TVoucherEntryPartial": {
        "title": "K3TVoucherEntryPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TVoucherEntry>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fVoucherId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fAccountId": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fdc": {
            "type": "number",
            "nullable": true
          },
          "fAmountFor": {
            "type": "string",
            "nullable": true
          },
          "fAmount": {
            "type": "string",
            "nullable": true
          },
          "fQuantity": {
            "type": "number",
            "nullable": true
          },
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitPrice": {
            "type": "number",
            "nullable": true
          },
          "fInternalInd": {
            "type": "string",
            "nullable": true
          },
          "fAccountId2": {
            "type": "number",
            "nullable": true
          },
          "fSettleTypeId": {
            "type": "number",
            "nullable": true
          },
          "fSettleNo": {
            "type": "string",
            "nullable": true
          },
          "fTransNo": {
            "type": "string",
            "nullable": true
          },
          "fCashFlowItem": {
            "type": "number",
            "nullable": true
          },
          "fTaskId": {
            "type": "number",
            "nullable": true
          },
          "fResourceId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fSideEntryId": {
            "type": "number",
            "nullable": true
          },
          "fIsBalance": {
            "type": "boolean",
            "nullable": true
          },
          "fBalanceGroupId": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TVoucherEntry>"
      },
      "K3TSupplier": {
        "title": "K3TSupplier",
        "type": "object",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fCity": {
            "type": "string",
            "nullable": true
          },
          "fProvince": {
            "type": "string",
            "nullable": true
          },
          "fCountry": {
            "type": "string",
            "nullable": true
          },
          "fPostalCode": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fFax": {
            "type": "string",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fHomePage": {
            "type": "string",
            "nullable": true
          },
          "fCreditLimit": {
            "type": "string",
            "nullable": true
          },
          "fTaxId": {
            "type": "string",
            "nullable": true
          },
          "fBank": {
            "type": "string",
            "nullable": true
          },
          "fAccount": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fBoundAttr": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fShortName": {
            "type": "string",
            "nullable": true
          },
          "fPriorityId": {
            "type": "number",
            "nullable": true
          },
          "fpoGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fLanguageId": {
            "type": "number",
            "nullable": true
          },
          "fRegionId": {
            "type": "number",
            "nullable": true
          },
          "fTrade": {
            "type": "number",
            "nullable": true
          },
          "fMinPoValue": {
            "type": "number",
            "nullable": true
          },
          "fMaxDeBitDate": {
            "type": "number",
            "nullable": true
          },
          "fLegalPerson": {
            "type": "string",
            "nullable": true
          },
          "fContact": {
            "type": "string",
            "nullable": true
          },
          "fContactAcct": {
            "type": "string",
            "nullable": true
          },
          "fPhoneAcct": {
            "type": "string",
            "nullable": true
          },
          "fFaxAcct": {
            "type": "string",
            "nullable": true
          },
          "fZipAcct": {
            "type": "string",
            "nullable": true
          },
          "fEmailAcct": {
            "type": "string",
            "nullable": true
          },
          "fAddrAcct": {
            "type": "string",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fCyId": {
            "type": "number",
            "nullable": true
          },
          "fSetId": {
            "type": "number",
            "nullable": true
          },
          "fSetDLineId": {
            "type": "number",
            "nullable": true
          },
          "fTaxNum": {
            "type": "string",
            "nullable": true
          },
          "fPriceClsId": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fciqNumber": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSaleMode": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "farAccountId": {
            "type": "number",
            "nullable": true
          },
          "fapAccountId": {
            "type": "number",
            "nullable": true
          },
          "fpreAcctId": {
            "type": "number",
            "nullable": true
          },
          "flastTradeAmount": {
            "type": "string",
            "nullable": true
          },
          "fLastRpAmount": {
            "type": "string",
            "nullable": true
          },
          "fFavorPolicy": {
            "type": "string",
            "nullable": true
          },
          "fdepartment": {
            "type": "number",
            "nullable": true
          },
          "femployee": {
            "type": "number",
            "nullable": true
          },
          "fcorperate": {
            "type": "string",
            "nullable": true
          },
          "fBeginTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastReceiveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fcashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fcurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fMaxDealAmount": {
            "type": "number",
            "nullable": true
          },
          "fMinForeReceiveRate": {
            "type": "number",
            "nullable": true
          },
          "fMinReserveRate": {
            "type": "number",
            "nullable": true
          },
          "fMaxForePayAmount": {
            "type": "number",
            "nullable": true
          },
          "fMaxForePayRate": {
            "type": "number",
            "nullable": true
          },
          "fdebtLevel": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fValueAddRate": {
            "type": "number",
            "nullable": true
          },
          "fPayTaxAcctId": {
            "type": "number",
            "nullable": true
          },
          "fDiscount": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "string",
            "nullable": true
          },
          "fStockIdAssignee": {
            "type": "number",
            "nullable": true
          },
          "fBr": {
            "type": "number",
            "nullable": true
          },
          "fRegmark": {
            "type": "string",
            "nullable": true
          },
          "fLicAndPermit": {
            "type": "string",
            "nullable": true
          },
          "fLicence": {
            "type": "string",
            "nullable": true
          },
          "fPaperPeriod": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAlarmPeriod": {
            "type": "number",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fAddrEn": {
            "type": "string",
            "nullable": true
          },
          "fciqCode": {
            "type": "string",
            "nullable": true
          },
          "fRegion": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fRegsterDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPassDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fInureDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAbateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupplyGrade": {
            "type": "number",
            "nullable": true
          },
          "fSupplyType": {
            "type": "number",
            "nullable": true
          },
          "fCompanyType": {
            "type": "number",
            "nullable": true
          },
          "fEvalutionType": {
            "type": "number",
            "nullable": true
          },
          "fSupplierCoroutineFlag": {
            "type": "string",
            "nullable": true
          },
          "fAutoCreateMr": {
            "type": "string",
            "nullable": true
          },
          "fAutoValidateOrderFlag": {
            "type": "string",
            "nullable": true
          },
          "fapFrozenFlag": {
            "type": "string",
            "nullable": true
          },
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fBiller": {
            "type": "number",
            "nullable": true
          },
          "fModifier": {
            "type": "number",
            "nullable": true
          },
          "fBillDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fModifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fScale": {
            "type": "string",
            "nullable": true
          },
          "fCharacter": {
            "type": "string",
            "nullable": true
          },
          "fCreateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRegsterAmount": {
            "type": "number",
            "nullable": true
          },
          "fProducePermit": {
            "type": "string",
            "nullable": true
          },
          "fSumPepole": {
            "type": "number",
            "nullable": true
          },
          "fPrepayAmount": {
            "type": "number",
            "nullable": true
          },
          "fIsAutoNumber": {
            "type": "number",
            "nullable": true
          },
          "fvmiStockId": {
            "type": "number",
            "nullable": true
          },
          "fpoMode": {
            "type": "number",
            "nullable": true
          },
          "fsrmStartDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "f1688MemberId": {
            "type": "string",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TSupplier": {
        "title": "NewK3TSupplier",
        "type": "object",
        "description": "(tsType: K3TSupplier, schemaOptions: { title: 'NewK3TSupplier' })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fCity": {
            "type": "string",
            "nullable": true
          },
          "fProvince": {
            "type": "string",
            "nullable": true
          },
          "fCountry": {
            "type": "string",
            "nullable": true
          },
          "fPostalCode": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fFax": {
            "type": "string",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fHomePage": {
            "type": "string",
            "nullable": true
          },
          "fCreditLimit": {
            "type": "string",
            "nullable": true
          },
          "fTaxId": {
            "type": "string",
            "nullable": true
          },
          "fBank": {
            "type": "string",
            "nullable": true
          },
          "fAccount": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fBoundAttr": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fShortName": {
            "type": "string",
            "nullable": true
          },
          "fPriorityId": {
            "type": "number",
            "nullable": true
          },
          "fpoGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fLanguageId": {
            "type": "number",
            "nullable": true
          },
          "fRegionId": {
            "type": "number",
            "nullable": true
          },
          "fTrade": {
            "type": "number",
            "nullable": true
          },
          "fMinPoValue": {
            "type": "number",
            "nullable": true
          },
          "fMaxDeBitDate": {
            "type": "number",
            "nullable": true
          },
          "fLegalPerson": {
            "type": "string",
            "nullable": true
          },
          "fContact": {
            "type": "string",
            "nullable": true
          },
          "fContactAcct": {
            "type": "string",
            "nullable": true
          },
          "fPhoneAcct": {
            "type": "string",
            "nullable": true
          },
          "fFaxAcct": {
            "type": "string",
            "nullable": true
          },
          "fZipAcct": {
            "type": "string",
            "nullable": true
          },
          "fEmailAcct": {
            "type": "string",
            "nullable": true
          },
          "fAddrAcct": {
            "type": "string",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fCyId": {
            "type": "number",
            "nullable": true
          },
          "fSetId": {
            "type": "number",
            "nullable": true
          },
          "fSetDLineId": {
            "type": "number",
            "nullable": true
          },
          "fTaxNum": {
            "type": "string",
            "nullable": true
          },
          "fPriceClsId": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fciqNumber": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSaleMode": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "farAccountId": {
            "type": "number",
            "nullable": true
          },
          "fapAccountId": {
            "type": "number",
            "nullable": true
          },
          "fpreAcctId": {
            "type": "number",
            "nullable": true
          },
          "flastTradeAmount": {
            "type": "string",
            "nullable": true
          },
          "fLastRpAmount": {
            "type": "string",
            "nullable": true
          },
          "fFavorPolicy": {
            "type": "string",
            "nullable": true
          },
          "fdepartment": {
            "type": "number",
            "nullable": true
          },
          "femployee": {
            "type": "number",
            "nullable": true
          },
          "fcorperate": {
            "type": "string",
            "nullable": true
          },
          "fBeginTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastReceiveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fcashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fcurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fMaxDealAmount": {
            "type": "number",
            "nullable": true
          },
          "fMinForeReceiveRate": {
            "type": "number",
            "nullable": true
          },
          "fMinReserveRate": {
            "type": "number",
            "nullable": true
          },
          "fMaxForePayAmount": {
            "type": "number",
            "nullable": true
          },
          "fMaxForePayRate": {
            "type": "number",
            "nullable": true
          },
          "fdebtLevel": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fValueAddRate": {
            "type": "number",
            "nullable": true
          },
          "fPayTaxAcctId": {
            "type": "number",
            "nullable": true
          },
          "fDiscount": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "string",
            "nullable": true
          },
          "fStockIdAssignee": {
            "type": "number",
            "nullable": true
          },
          "fBr": {
            "type": "number",
            "nullable": true
          },
          "fRegmark": {
            "type": "string",
            "nullable": true
          },
          "fLicAndPermit": {
            "type": "string",
            "nullable": true
          },
          "fLicence": {
            "type": "string",
            "nullable": true
          },
          "fPaperPeriod": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAlarmPeriod": {
            "type": "number",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fAddrEn": {
            "type": "string",
            "nullable": true
          },
          "fciqCode": {
            "type": "string",
            "nullable": true
          },
          "fRegion": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fRegsterDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPassDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fInureDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAbateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupplyGrade": {
            "type": "number",
            "nullable": true
          },
          "fSupplyType": {
            "type": "number",
            "nullable": true
          },
          "fCompanyType": {
            "type": "number",
            "nullable": true
          },
          "fEvalutionType": {
            "type": "number",
            "nullable": true
          },
          "fSupplierCoroutineFlag": {
            "type": "string",
            "nullable": true
          },
          "fAutoCreateMr": {
            "type": "string",
            "nullable": true
          },
          "fAutoValidateOrderFlag": {
            "type": "string",
            "nullable": true
          },
          "fapFrozenFlag": {
            "type": "string",
            "nullable": true
          },
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fBiller": {
            "type": "number",
            "nullable": true
          },
          "fModifier": {
            "type": "number",
            "nullable": true
          },
          "fBillDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fModifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fScale": {
            "type": "string",
            "nullable": true
          },
          "fCharacter": {
            "type": "string",
            "nullable": true
          },
          "fCreateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRegsterAmount": {
            "type": "number",
            "nullable": true
          },
          "fProducePermit": {
            "type": "string",
            "nullable": true
          },
          "fSumPepole": {
            "type": "number",
            "nullable": true
          },
          "fPrepayAmount": {
            "type": "number",
            "nullable": true
          },
          "fIsAutoNumber": {
            "type": "number",
            "nullable": true
          },
          "fvmiStockId": {
            "type": "number",
            "nullable": true
          },
          "fpoMode": {
            "type": "number",
            "nullable": true
          },
          "fsrmStartDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "f1688MemberId": {
            "type": "string",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TSupplier"
      },
      "K3TSupplierWithRelations": {
        "title": "K3TSupplierWithRelations",
        "type": "object",
        "description": "(tsType: K3TSupplierWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fCity": {
            "type": "string",
            "nullable": true
          },
          "fProvince": {
            "type": "string",
            "nullable": true
          },
          "fCountry": {
            "type": "string",
            "nullable": true
          },
          "fPostalCode": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fFax": {
            "type": "string",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fHomePage": {
            "type": "string",
            "nullable": true
          },
          "fCreditLimit": {
            "type": "string",
            "nullable": true
          },
          "fTaxId": {
            "type": "string",
            "nullable": true
          },
          "fBank": {
            "type": "string",
            "nullable": true
          },
          "fAccount": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fBoundAttr": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fShortName": {
            "type": "string",
            "nullable": true
          },
          "fPriorityId": {
            "type": "number",
            "nullable": true
          },
          "fpoGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fLanguageId": {
            "type": "number",
            "nullable": true
          },
          "fRegionId": {
            "type": "number",
            "nullable": true
          },
          "fTrade": {
            "type": "number",
            "nullable": true
          },
          "fMinPoValue": {
            "type": "number",
            "nullable": true
          },
          "fMaxDeBitDate": {
            "type": "number",
            "nullable": true
          },
          "fLegalPerson": {
            "type": "string",
            "nullable": true
          },
          "fContact": {
            "type": "string",
            "nullable": true
          },
          "fContactAcct": {
            "type": "string",
            "nullable": true
          },
          "fPhoneAcct": {
            "type": "string",
            "nullable": true
          },
          "fFaxAcct": {
            "type": "string",
            "nullable": true
          },
          "fZipAcct": {
            "type": "string",
            "nullable": true
          },
          "fEmailAcct": {
            "type": "string",
            "nullable": true
          },
          "fAddrAcct": {
            "type": "string",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fCyId": {
            "type": "number",
            "nullable": true
          },
          "fSetId": {
            "type": "number",
            "nullable": true
          },
          "fSetDLineId": {
            "type": "number",
            "nullable": true
          },
          "fTaxNum": {
            "type": "string",
            "nullable": true
          },
          "fPriceClsId": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fciqNumber": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSaleMode": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "farAccountId": {
            "type": "number",
            "nullable": true
          },
          "fapAccountId": {
            "type": "number",
            "nullable": true
          },
          "fpreAcctId": {
            "type": "number",
            "nullable": true
          },
          "flastTradeAmount": {
            "type": "string",
            "nullable": true
          },
          "fLastRpAmount": {
            "type": "string",
            "nullable": true
          },
          "fFavorPolicy": {
            "type": "string",
            "nullable": true
          },
          "fdepartment": {
            "type": "number",
            "nullable": true
          },
          "femployee": {
            "type": "number",
            "nullable": true
          },
          "fcorperate": {
            "type": "string",
            "nullable": true
          },
          "fBeginTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastReceiveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fcashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fcurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fMaxDealAmount": {
            "type": "number",
            "nullable": true
          },
          "fMinForeReceiveRate": {
            "type": "number",
            "nullable": true
          },
          "fMinReserveRate": {
            "type": "number",
            "nullable": true
          },
          "fMaxForePayAmount": {
            "type": "number",
            "nullable": true
          },
          "fMaxForePayRate": {
            "type": "number",
            "nullable": true
          },
          "fdebtLevel": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fValueAddRate": {
            "type": "number",
            "nullable": true
          },
          "fPayTaxAcctId": {
            "type": "number",
            "nullable": true
          },
          "fDiscount": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "string",
            "nullable": true
          },
          "fStockIdAssignee": {
            "type": "number",
            "nullable": true
          },
          "fBr": {
            "type": "number",
            "nullable": true
          },
          "fRegmark": {
            "type": "string",
            "nullable": true
          },
          "fLicAndPermit": {
            "type": "string",
            "nullable": true
          },
          "fLicence": {
            "type": "string",
            "nullable": true
          },
          "fPaperPeriod": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAlarmPeriod": {
            "type": "number",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fAddrEn": {
            "type": "string",
            "nullable": true
          },
          "fciqCode": {
            "type": "string",
            "nullable": true
          },
          "fRegion": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fRegsterDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPassDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fInureDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAbateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupplyGrade": {
            "type": "number",
            "nullable": true
          },
          "fSupplyType": {
            "type": "number",
            "nullable": true
          },
          "fCompanyType": {
            "type": "number",
            "nullable": true
          },
          "fEvalutionType": {
            "type": "number",
            "nullable": true
          },
          "fSupplierCoroutineFlag": {
            "type": "string",
            "nullable": true
          },
          "fAutoCreateMr": {
            "type": "string",
            "nullable": true
          },
          "fAutoValidateOrderFlag": {
            "type": "string",
            "nullable": true
          },
          "fapFrozenFlag": {
            "type": "string",
            "nullable": true
          },
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fBiller": {
            "type": "number",
            "nullable": true
          },
          "fModifier": {
            "type": "number",
            "nullable": true
          },
          "fBillDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fModifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fScale": {
            "type": "string",
            "nullable": true
          },
          "fCharacter": {
            "type": "string",
            "nullable": true
          },
          "fCreateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRegsterAmount": {
            "type": "number",
            "nullable": true
          },
          "fProducePermit": {
            "type": "string",
            "nullable": true
          },
          "fSumPepole": {
            "type": "number",
            "nullable": true
          },
          "fPrepayAmount": {
            "type": "number",
            "nullable": true
          },
          "fIsAutoNumber": {
            "type": "number",
            "nullable": true
          },
          "fvmiStockId": {
            "type": "number",
            "nullable": true
          },
          "fpoMode": {
            "type": "number",
            "nullable": true
          },
          "fsrmStartDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "f1688MemberId": {
            "type": "string",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TSupplierWithRelations"
      },
      "K3TSupplierPartial": {
        "title": "K3TSupplierPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TSupplier>, schemaOptions: { partial: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fCity": {
            "type": "string",
            "nullable": true
          },
          "fProvince": {
            "type": "string",
            "nullable": true
          },
          "fCountry": {
            "type": "string",
            "nullable": true
          },
          "fPostalCode": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fFax": {
            "type": "string",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fHomePage": {
            "type": "string",
            "nullable": true
          },
          "fCreditLimit": {
            "type": "string",
            "nullable": true
          },
          "fTaxId": {
            "type": "string",
            "nullable": true
          },
          "fBank": {
            "type": "string",
            "nullable": true
          },
          "fAccount": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fBoundAttr": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fShortName": {
            "type": "string",
            "nullable": true
          },
          "fPriorityId": {
            "type": "number",
            "nullable": true
          },
          "fpoGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fLanguageId": {
            "type": "number",
            "nullable": true
          },
          "fRegionId": {
            "type": "number",
            "nullable": true
          },
          "fTrade": {
            "type": "number",
            "nullable": true
          },
          "fMinPoValue": {
            "type": "number",
            "nullable": true
          },
          "fMaxDeBitDate": {
            "type": "number",
            "nullable": true
          },
          "fLegalPerson": {
            "type": "string",
            "nullable": true
          },
          "fContact": {
            "type": "string",
            "nullable": true
          },
          "fContactAcct": {
            "type": "string",
            "nullable": true
          },
          "fPhoneAcct": {
            "type": "string",
            "nullable": true
          },
          "fFaxAcct": {
            "type": "string",
            "nullable": true
          },
          "fZipAcct": {
            "type": "string",
            "nullable": true
          },
          "fEmailAcct": {
            "type": "string",
            "nullable": true
          },
          "fAddrAcct": {
            "type": "string",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fCyId": {
            "type": "number",
            "nullable": true
          },
          "fSetId": {
            "type": "number",
            "nullable": true
          },
          "fSetDLineId": {
            "type": "number",
            "nullable": true
          },
          "fTaxNum": {
            "type": "string",
            "nullable": true
          },
          "fPriceClsId": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fciqNumber": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSaleMode": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "farAccountId": {
            "type": "number",
            "nullable": true
          },
          "fapAccountId": {
            "type": "number",
            "nullable": true
          },
          "fpreAcctId": {
            "type": "number",
            "nullable": true
          },
          "flastTradeAmount": {
            "type": "string",
            "nullable": true
          },
          "fLastRpAmount": {
            "type": "string",
            "nullable": true
          },
          "fFavorPolicy": {
            "type": "string",
            "nullable": true
          },
          "fdepartment": {
            "type": "number",
            "nullable": true
          },
          "femployee": {
            "type": "number",
            "nullable": true
          },
          "fcorperate": {
            "type": "string",
            "nullable": true
          },
          "fBeginTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastReceiveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fcashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fcurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fMaxDealAmount": {
            "type": "number",
            "nullable": true
          },
          "fMinForeReceiveRate": {
            "type": "number",
            "nullable": true
          },
          "fMinReserveRate": {
            "type": "number",
            "nullable": true
          },
          "fMaxForePayAmount": {
            "type": "number",
            "nullable": true
          },
          "fMaxForePayRate": {
            "type": "number",
            "nullable": true
          },
          "fdebtLevel": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fValueAddRate": {
            "type": "number",
            "nullable": true
          },
          "fPayTaxAcctId": {
            "type": "number",
            "nullable": true
          },
          "fDiscount": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "string",
            "nullable": true
          },
          "fStockIdAssignee": {
            "type": "number",
            "nullable": true
          },
          "fBr": {
            "type": "number",
            "nullable": true
          },
          "fRegmark": {
            "type": "string",
            "nullable": true
          },
          "fLicAndPermit": {
            "type": "string",
            "nullable": true
          },
          "fLicence": {
            "type": "string",
            "nullable": true
          },
          "fPaperPeriod": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAlarmPeriod": {
            "type": "number",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fAddrEn": {
            "type": "string",
            "nullable": true
          },
          "fciqCode": {
            "type": "string",
            "nullable": true
          },
          "fRegion": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fRegsterDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPassDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fInureDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAbateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupplyGrade": {
            "type": "number",
            "nullable": true
          },
          "fSupplyType": {
            "type": "number",
            "nullable": true
          },
          "fCompanyType": {
            "type": "number",
            "nullable": true
          },
          "fEvalutionType": {
            "type": "number",
            "nullable": true
          },
          "fSupplierCoroutineFlag": {
            "type": "string",
            "nullable": true
          },
          "fAutoCreateMr": {
            "type": "string",
            "nullable": true
          },
          "fAutoValidateOrderFlag": {
            "type": "string",
            "nullable": true
          },
          "fapFrozenFlag": {
            "type": "string",
            "nullable": true
          },
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fBiller": {
            "type": "number",
            "nullable": true
          },
          "fModifier": {
            "type": "number",
            "nullable": true
          },
          "fBillDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fModifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fScale": {
            "type": "string",
            "nullable": true
          },
          "fCharacter": {
            "type": "string",
            "nullable": true
          },
          "fCreateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRegsterAmount": {
            "type": "number",
            "nullable": true
          },
          "fProducePermit": {
            "type": "string",
            "nullable": true
          },
          "fSumPepole": {
            "type": "number",
            "nullable": true
          },
          "fPrepayAmount": {
            "type": "number",
            "nullable": true
          },
          "fIsAutoNumber": {
            "type": "number",
            "nullable": true
          },
          "fvmiStockId": {
            "type": "number",
            "nullable": true
          },
          "fpoMode": {
            "type": "number",
            "nullable": true
          },
          "fsrmStartDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "f1688MemberId": {
            "type": "string",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TSupplier>"
      },
      "K3TSubMessage": {
        "title": "K3TSubMessage",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fid": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fSpec": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TSubMessage": {
        "title": "NewK3TSubMessage",
        "type": "object",
        "description": "(tsType: K3TSubMessage, schemaOptions: { title: 'NewK3TSubMessage' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fid": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fSpec": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TSubMessage"
      },
      "K3TSubMessageWithRelations": {
        "title": "K3TSubMessageWithRelations",
        "type": "object",
        "description": "(tsType: K3TSubMessageWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fid": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fSpec": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TSubMessageWithRelations"
      },
      "K3TSubMessagePartial": {
        "title": "K3TSubMessagePartial",
        "type": "object",
        "description": "(tsType: Partial<K3TSubMessage>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fid": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fSpec": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TSubMessage>"
      },
      "K3TStock": {
        "title": "K3TStock",
        "type": "object",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fHelperCode": {
            "type": "string",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fProperty": {
            "type": "number",
            "nullable": true
          },
          "fbWorkShop": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fIsStockMgr": {
            "type": "string",
            "nullable": true
          },
          "fspGroupId": {
            "type": "number",
            "nullable": true
          },
          "fmrpAvail": {
            "type": "string",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStockGroupId": {
            "type": "number",
            "nullable": true
          },
          "fCalcCostOrder": {
            "type": "number",
            "nullable": true
          },
          "fPlanArea": {
            "type": "number",
            "nullable": true
          },
          "fUnderStock": {
            "type": "number",
            "nullable": true
          },
          "fIncludeAccounting": {
            "type": "string",
            "nullable": true
          },
          "fptlEnable": {
            "type": "number",
            "nullable": true
          },
          "fOutRule": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TStock": {
        "title": "NewK3TStock",
        "type": "object",
        "description": "(tsType: K3TStock, schemaOptions: { title: 'NewK3TStock' })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fHelperCode": {
            "type": "string",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fProperty": {
            "type": "number",
            "nullable": true
          },
          "fbWorkShop": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fIsStockMgr": {
            "type": "string",
            "nullable": true
          },
          "fspGroupId": {
            "type": "number",
            "nullable": true
          },
          "fmrpAvail": {
            "type": "string",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStockGroupId": {
            "type": "number",
            "nullable": true
          },
          "fCalcCostOrder": {
            "type": "number",
            "nullable": true
          },
          "fPlanArea": {
            "type": "number",
            "nullable": true
          },
          "fUnderStock": {
            "type": "number",
            "nullable": true
          },
          "fIncludeAccounting": {
            "type": "string",
            "nullable": true
          },
          "fptlEnable": {
            "type": "number",
            "nullable": true
          },
          "fOutRule": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TStock"
      },
      "K3TStockWithRelations": {
        "title": "K3TStockWithRelations",
        "type": "object",
        "description": "(tsType: K3TStockWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fHelperCode": {
            "type": "string",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fProperty": {
            "type": "number",
            "nullable": true
          },
          "fbWorkShop": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fIsStockMgr": {
            "type": "string",
            "nullable": true
          },
          "fspGroupId": {
            "type": "number",
            "nullable": true
          },
          "fmrpAvail": {
            "type": "string",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStockGroupId": {
            "type": "number",
            "nullable": true
          },
          "fCalcCostOrder": {
            "type": "number",
            "nullable": true
          },
          "fPlanArea": {
            "type": "number",
            "nullable": true
          },
          "fUnderStock": {
            "type": "number",
            "nullable": true
          },
          "fIncludeAccounting": {
            "type": "string",
            "nullable": true
          },
          "fptlEnable": {
            "type": "number",
            "nullable": true
          },
          "fOutRule": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TStockWithRelations"
      },
      "K3TStockPartial": {
        "title": "K3TStockPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TStock>, schemaOptions: { partial: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fHelperCode": {
            "type": "string",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fProperty": {
            "type": "number",
            "nullable": true
          },
          "fbWorkShop": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fIsStockMgr": {
            "type": "string",
            "nullable": true
          },
          "fspGroupId": {
            "type": "number",
            "nullable": true
          },
          "fmrpAvail": {
            "type": "string",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStockGroupId": {
            "type": "number",
            "nullable": true
          },
          "fCalcCostOrder": {
            "type": "number",
            "nullable": true
          },
          "fPlanArea": {
            "type": "number",
            "nullable": true
          },
          "fUnderStock": {
            "type": "number",
            "nullable": true
          },
          "fIncludeAccounting": {
            "type": "string",
            "nullable": true
          },
          "fptlEnable": {
            "type": "number",
            "nullable": true
          },
          "fOutRule": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TStock>"
      },
      "K3TStockPlace": {
        "title": "K3TStockPlace",
        "type": "object",
        "properties": {
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fspGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fLevel": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fFullNumber": {
            "type": "string",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fDescription": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TStockPlace": {
        "title": "NewK3TStockPlace",
        "type": "object",
        "description": "(tsType: K3TStockPlace, schemaOptions: { title: 'NewK3TStockPlace' })",
        "properties": {
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fspGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fLevel": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fFullNumber": {
            "type": "string",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fDescription": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TStockPlace"
      },
      "K3TStockPlaceWithRelations": {
        "title": "K3TStockPlaceWithRelations",
        "type": "object",
        "description": "(tsType: K3TStockPlaceWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fspGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fLevel": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fFullNumber": {
            "type": "string",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fDescription": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TStockPlaceWithRelations"
      },
      "K3TStockPlacePartial": {
        "title": "K3TStockPlacePartial",
        "type": "object",
        "description": "(tsType: Partial<K3TStockPlace>, schemaOptions: { partial: true })",
        "properties": {
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fspGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fLevel": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fFullNumber": {
            "type": "string",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fDescription": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TStockPlace>"
      },
      "K3TOrganization": {
        "title": "K3TOrganization",
        "type": "object",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fCity": {
            "type": "string",
            "nullable": true
          },
          "fProvince": {
            "type": "string",
            "nullable": true
          },
          "fCountry": {
            "type": "string",
            "nullable": true
          },
          "fPostalCode": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fFax": {
            "type": "string",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fHomePage": {
            "type": "string",
            "nullable": true
          },
          "fCreditLimit": {
            "type": "string",
            "nullable": true
          },
          "fTaxId": {
            "type": "string",
            "nullable": true
          },
          "fBank": {
            "type": "string",
            "nullable": true
          },
          "fAccount": {
            "type": "string",
            "nullable": true
          },
          "fBankNumber": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fBoundAttr": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fShortName": {
            "type": "string",
            "nullable": true
          },
          "fPriorityId": {
            "type": "number",
            "nullable": true
          },
          "fpoGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fLanguageId": {
            "type": "number",
            "nullable": true
          },
          "fRegionId": {
            "type": "number",
            "nullable": true
          },
          "fTrade": {
            "type": "number",
            "nullable": true
          },
          "fMinPoValue": {
            "type": "number",
            "nullable": true
          },
          "fMaxDebitDate": {
            "type": "number",
            "nullable": true
          },
          "fLegalPerson": {
            "type": "string",
            "nullable": true
          },
          "fContact": {
            "type": "string",
            "nullable": true
          },
          "fContactAcct": {
            "type": "string",
            "nullable": true
          },
          "fPhoneAcct": {
            "type": "string",
            "nullable": true
          },
          "fFaxAcct": {
            "type": "string",
            "nullable": true
          },
          "fZipAcct": {
            "type": "string",
            "nullable": true
          },
          "fEmailAcct": {
            "type": "string",
            "nullable": true
          },
          "fAddrAcct": {
            "type": "string",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fCyId": {
            "type": "number",
            "nullable": true
          },
          "fSetId": {
            "type": "number",
            "nullable": true
          },
          "fSetDLineId": {
            "type": "number",
            "nullable": true
          },
          "fTaxNum": {
            "type": "string",
            "nullable": true
          },
          "fPriceClsId": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fciqNumber": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSaleMode": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "farAccountId": {
            "type": "number",
            "nullable": true
          },
          "fapAccountId": {
            "type": "number",
            "nullable": true
          },
          "fpreAcctId": {
            "type": "number",
            "nullable": true
          },
          "flastTradeAmount": {
            "type": "string",
            "nullable": true
          },
          "flastRpAmount": {
            "type": "string",
            "nullable": true
          },
          "ffavorPolicy": {
            "type": "string",
            "nullable": true
          },
          "fdepartment": {
            "type": "number",
            "nullable": true
          },
          "femployee": {
            "type": "number",
            "nullable": true
          },
          "fcorperate": {
            "type": "string",
            "nullable": true
          },
          "fbeginTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fendTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "flastTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "flastReceiveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fcashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fcurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fmaxDealAmount": {
            "type": "number",
            "nullable": true
          },
          "fminForeReceiveRate": {
            "type": "number",
            "nullable": true
          },
          "fminReserverate": {
            "type": "number",
            "nullable": true
          },
          "fdebtLevel": {
            "type": "number",
            "nullable": true
          },
          "fCarryingAos": {
            "type": "number",
            "nullable": true
          },
          "fIsCreditMgr": {
            "type": "string",
            "nullable": true
          },
          "fCreditPeriod": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "number",
            "nullable": true
          },
          "fPayTaxAcctId": {
            "type": "number",
            "nullable": true
          },
          "fValueAddRate": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fStockIdAssign": {
            "type": "number",
            "nullable": true
          },
          "fStockIdInst": {
            "type": "number",
            "nullable": true
          },
          "fStockIdKeep": {
            "type": "number",
            "nullable": true
          },
          "fPaperPeriod": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAlarmPeriod": {
            "type": "number",
            "nullable": true
          },
          "fLicAndPermit": {
            "type": "string",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fSaleId": {
            "type": "number",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fAddrEn": {
            "type": "string",
            "nullable": true
          },
          "fciqCode": {
            "type": "string",
            "nullable": true
          },
          "fRegion": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fPayCondition": {
            "type": "number",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fClass": {
            "type": "number",
            "nullable": true
          },
          "fValue": {
            "type": "string",
            "nullable": true
          },
          "fRegUserId": {
            "type": "number",
            "nullable": true
          },
          "fLastModifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRecentContactDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRegDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFlat": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCoSupplierId": {
            "type": "number",
            "nullable": true
          },
          "fShareStatus": {
            "type": "number",
            "nullable": true
          },
          "fCustType": {
            "type": "number",
            "nullable": true
          },
          "fSuperiorId": {
            "type": "number",
            "nullable": true
          },
          "fClueId": {
            "type": "number",
            "nullable": true
          },
          "fLastMailTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "fSex": {
            "type": "string",
            "nullable": true
          },
          "fMobile": {
            "type": "string",
            "nullable": true
          },
          "fDuty": {
            "type": "string",
            "nullable": true
          },
          "fWorkSite": {
            "type": "string",
            "nullable": true
          },
          "fWorkUnit": {
            "type": "string",
            "nullable": true
          },
          "fIncomeLevel": {
            "type": "number",
            "nullable": true
          },
          "fStratum": {
            "type": "number",
            "nullable": true
          },
          "fAge": {
            "type": "number",
            "nullable": true
          },
          "fBirthday": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fNation": {
            "type": "string",
            "nullable": true
          },
          "fBizPostCode": {
            "type": "string",
            "nullable": true
          },
          "fim": {
            "type": "string",
            "nullable": true
          },
          "fBizPhone": {
            "type": "string",
            "nullable": true
          },
          "fLastActivityTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastSvTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastCallTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastSmsTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExpired": {
            "type": "number",
            "nullable": true
          },
          "fLastAssignTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TOrganization": {
        "title": "NewK3TOrganization",
        "type": "object",
        "description": "(tsType: K3TOrganization, schemaOptions: { title: 'NewK3TOrganization' })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fCity": {
            "type": "string",
            "nullable": true
          },
          "fProvince": {
            "type": "string",
            "nullable": true
          },
          "fCountry": {
            "type": "string",
            "nullable": true
          },
          "fPostalCode": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fFax": {
            "type": "string",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fHomePage": {
            "type": "string",
            "nullable": true
          },
          "fCreditLimit": {
            "type": "string",
            "nullable": true
          },
          "fTaxId": {
            "type": "string",
            "nullable": true
          },
          "fBank": {
            "type": "string",
            "nullable": true
          },
          "fAccount": {
            "type": "string",
            "nullable": true
          },
          "fBankNumber": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fBoundAttr": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fShortName": {
            "type": "string",
            "nullable": true
          },
          "fPriorityId": {
            "type": "number",
            "nullable": true
          },
          "fpoGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fLanguageId": {
            "type": "number",
            "nullable": true
          },
          "fRegionId": {
            "type": "number",
            "nullable": true
          },
          "fTrade": {
            "type": "number",
            "nullable": true
          },
          "fMinPoValue": {
            "type": "number",
            "nullable": true
          },
          "fMaxDebitDate": {
            "type": "number",
            "nullable": true
          },
          "fLegalPerson": {
            "type": "string",
            "nullable": true
          },
          "fContact": {
            "type": "string",
            "nullable": true
          },
          "fContactAcct": {
            "type": "string",
            "nullable": true
          },
          "fPhoneAcct": {
            "type": "string",
            "nullable": true
          },
          "fFaxAcct": {
            "type": "string",
            "nullable": true
          },
          "fZipAcct": {
            "type": "string",
            "nullable": true
          },
          "fEmailAcct": {
            "type": "string",
            "nullable": true
          },
          "fAddrAcct": {
            "type": "string",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fCyId": {
            "type": "number",
            "nullable": true
          },
          "fSetId": {
            "type": "number",
            "nullable": true
          },
          "fSetDLineId": {
            "type": "number",
            "nullable": true
          },
          "fTaxNum": {
            "type": "string",
            "nullable": true
          },
          "fPriceClsId": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fciqNumber": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSaleMode": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "farAccountId": {
            "type": "number",
            "nullable": true
          },
          "fapAccountId": {
            "type": "number",
            "nullable": true
          },
          "fpreAcctId": {
            "type": "number",
            "nullable": true
          },
          "flastTradeAmount": {
            "type": "string",
            "nullable": true
          },
          "flastRpAmount": {
            "type": "string",
            "nullable": true
          },
          "ffavorPolicy": {
            "type": "string",
            "nullable": true
          },
          "fdepartment": {
            "type": "number",
            "nullable": true
          },
          "femployee": {
            "type": "number",
            "nullable": true
          },
          "fcorperate": {
            "type": "string",
            "nullable": true
          },
          "fbeginTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fendTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "flastTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "flastReceiveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fcashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fcurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fmaxDealAmount": {
            "type": "number",
            "nullable": true
          },
          "fminForeReceiveRate": {
            "type": "number",
            "nullable": true
          },
          "fminReserverate": {
            "type": "number",
            "nullable": true
          },
          "fdebtLevel": {
            "type": "number",
            "nullable": true
          },
          "fCarryingAos": {
            "type": "number",
            "nullable": true
          },
          "fIsCreditMgr": {
            "type": "string",
            "nullable": true
          },
          "fCreditPeriod": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "number",
            "nullable": true
          },
          "fPayTaxAcctId": {
            "type": "number",
            "nullable": true
          },
          "fValueAddRate": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fStockIdAssign": {
            "type": "number",
            "nullable": true
          },
          "fStockIdInst": {
            "type": "number",
            "nullable": true
          },
          "fStockIdKeep": {
            "type": "number",
            "nullable": true
          },
          "fPaperPeriod": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAlarmPeriod": {
            "type": "number",
            "nullable": true
          },
          "fLicAndPermit": {
            "type": "string",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fSaleId": {
            "type": "number",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fAddrEn": {
            "type": "string",
            "nullable": true
          },
          "fciqCode": {
            "type": "string",
            "nullable": true
          },
          "fRegion": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fPayCondition": {
            "type": "number",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fClass": {
            "type": "number",
            "nullable": true
          },
          "fValue": {
            "type": "string",
            "nullable": true
          },
          "fRegUserId": {
            "type": "number",
            "nullable": true
          },
          "fLastModifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRecentContactDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRegDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFlat": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCoSupplierId": {
            "type": "number",
            "nullable": true
          },
          "fShareStatus": {
            "type": "number",
            "nullable": true
          },
          "fCustType": {
            "type": "number",
            "nullable": true
          },
          "fSuperiorId": {
            "type": "number",
            "nullable": true
          },
          "fClueId": {
            "type": "number",
            "nullable": true
          },
          "fLastMailTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "fSex": {
            "type": "string",
            "nullable": true
          },
          "fMobile": {
            "type": "string",
            "nullable": true
          },
          "fDuty": {
            "type": "string",
            "nullable": true
          },
          "fWorkSite": {
            "type": "string",
            "nullable": true
          },
          "fWorkUnit": {
            "type": "string",
            "nullable": true
          },
          "fIncomeLevel": {
            "type": "number",
            "nullable": true
          },
          "fStratum": {
            "type": "number",
            "nullable": true
          },
          "fAge": {
            "type": "number",
            "nullable": true
          },
          "fBirthday": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fNation": {
            "type": "string",
            "nullable": true
          },
          "fBizPostCode": {
            "type": "string",
            "nullable": true
          },
          "fim": {
            "type": "string",
            "nullable": true
          },
          "fBizPhone": {
            "type": "string",
            "nullable": true
          },
          "fLastActivityTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastSvTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastCallTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastSmsTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExpired": {
            "type": "number",
            "nullable": true
          },
          "fLastAssignTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TOrganization"
      },
      "K3TOrganizationWithRelations": {
        "title": "K3TOrganizationWithRelations",
        "type": "object",
        "description": "(tsType: K3TOrganizationWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fCity": {
            "type": "string",
            "nullable": true
          },
          "fProvince": {
            "type": "string",
            "nullable": true
          },
          "fCountry": {
            "type": "string",
            "nullable": true
          },
          "fPostalCode": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fFax": {
            "type": "string",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fHomePage": {
            "type": "string",
            "nullable": true
          },
          "fCreditLimit": {
            "type": "string",
            "nullable": true
          },
          "fTaxId": {
            "type": "string",
            "nullable": true
          },
          "fBank": {
            "type": "string",
            "nullable": true
          },
          "fAccount": {
            "type": "string",
            "nullable": true
          },
          "fBankNumber": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fBoundAttr": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fShortName": {
            "type": "string",
            "nullable": true
          },
          "fPriorityId": {
            "type": "number",
            "nullable": true
          },
          "fpoGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fLanguageId": {
            "type": "number",
            "nullable": true
          },
          "fRegionId": {
            "type": "number",
            "nullable": true
          },
          "fTrade": {
            "type": "number",
            "nullable": true
          },
          "fMinPoValue": {
            "type": "number",
            "nullable": true
          },
          "fMaxDebitDate": {
            "type": "number",
            "nullable": true
          },
          "fLegalPerson": {
            "type": "string",
            "nullable": true
          },
          "fContact": {
            "type": "string",
            "nullable": true
          },
          "fContactAcct": {
            "type": "string",
            "nullable": true
          },
          "fPhoneAcct": {
            "type": "string",
            "nullable": true
          },
          "fFaxAcct": {
            "type": "string",
            "nullable": true
          },
          "fZipAcct": {
            "type": "string",
            "nullable": true
          },
          "fEmailAcct": {
            "type": "string",
            "nullable": true
          },
          "fAddrAcct": {
            "type": "string",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fCyId": {
            "type": "number",
            "nullable": true
          },
          "fSetId": {
            "type": "number",
            "nullable": true
          },
          "fSetDLineId": {
            "type": "number",
            "nullable": true
          },
          "fTaxNum": {
            "type": "string",
            "nullable": true
          },
          "fPriceClsId": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fciqNumber": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSaleMode": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "farAccountId": {
            "type": "number",
            "nullable": true
          },
          "fapAccountId": {
            "type": "number",
            "nullable": true
          },
          "fpreAcctId": {
            "type": "number",
            "nullable": true
          },
          "flastTradeAmount": {
            "type": "string",
            "nullable": true
          },
          "flastRpAmount": {
            "type": "string",
            "nullable": true
          },
          "ffavorPolicy": {
            "type": "string",
            "nullable": true
          },
          "fdepartment": {
            "type": "number",
            "nullable": true
          },
          "femployee": {
            "type": "number",
            "nullable": true
          },
          "fcorperate": {
            "type": "string",
            "nullable": true
          },
          "fbeginTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fendTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "flastTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "flastReceiveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fcashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fcurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fmaxDealAmount": {
            "type": "number",
            "nullable": true
          },
          "fminForeReceiveRate": {
            "type": "number",
            "nullable": true
          },
          "fminReserverate": {
            "type": "number",
            "nullable": true
          },
          "fdebtLevel": {
            "type": "number",
            "nullable": true
          },
          "fCarryingAos": {
            "type": "number",
            "nullable": true
          },
          "fIsCreditMgr": {
            "type": "string",
            "nullable": true
          },
          "fCreditPeriod": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "number",
            "nullable": true
          },
          "fPayTaxAcctId": {
            "type": "number",
            "nullable": true
          },
          "fValueAddRate": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fStockIdAssign": {
            "type": "number",
            "nullable": true
          },
          "fStockIdInst": {
            "type": "number",
            "nullable": true
          },
          "fStockIdKeep": {
            "type": "number",
            "nullable": true
          },
          "fPaperPeriod": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAlarmPeriod": {
            "type": "number",
            "nullable": true
          },
          "fLicAndPermit": {
            "type": "string",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fSaleId": {
            "type": "number",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fAddrEn": {
            "type": "string",
            "nullable": true
          },
          "fciqCode": {
            "type": "string",
            "nullable": true
          },
          "fRegion": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fPayCondition": {
            "type": "number",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fClass": {
            "type": "number",
            "nullable": true
          },
          "fValue": {
            "type": "string",
            "nullable": true
          },
          "fRegUserId": {
            "type": "number",
            "nullable": true
          },
          "fLastModifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRecentContactDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRegDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFlat": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCoSupplierId": {
            "type": "number",
            "nullable": true
          },
          "fShareStatus": {
            "type": "number",
            "nullable": true
          },
          "fCustType": {
            "type": "number",
            "nullable": true
          },
          "fSuperiorId": {
            "type": "number",
            "nullable": true
          },
          "fClueId": {
            "type": "number",
            "nullable": true
          },
          "fLastMailTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "fSex": {
            "type": "string",
            "nullable": true
          },
          "fMobile": {
            "type": "string",
            "nullable": true
          },
          "fDuty": {
            "type": "string",
            "nullable": true
          },
          "fWorkSite": {
            "type": "string",
            "nullable": true
          },
          "fWorkUnit": {
            "type": "string",
            "nullable": true
          },
          "fIncomeLevel": {
            "type": "number",
            "nullable": true
          },
          "fStratum": {
            "type": "number",
            "nullable": true
          },
          "fAge": {
            "type": "number",
            "nullable": true
          },
          "fBirthday": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fNation": {
            "type": "string",
            "nullable": true
          },
          "fBizPostCode": {
            "type": "string",
            "nullable": true
          },
          "fim": {
            "type": "string",
            "nullable": true
          },
          "fBizPhone": {
            "type": "string",
            "nullable": true
          },
          "fLastActivityTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastSvTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastCallTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastSmsTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExpired": {
            "type": "number",
            "nullable": true
          },
          "fLastAssignTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TOrganizationWithRelations"
      },
      "K3TOrganizationPartial": {
        "title": "K3TOrganizationPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TOrganization>, schemaOptions: { partial: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fCity": {
            "type": "string",
            "nullable": true
          },
          "fProvince": {
            "type": "string",
            "nullable": true
          },
          "fCountry": {
            "type": "string",
            "nullable": true
          },
          "fPostalCode": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fFax": {
            "type": "string",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fHomePage": {
            "type": "string",
            "nullable": true
          },
          "fCreditLimit": {
            "type": "string",
            "nullable": true
          },
          "fTaxId": {
            "type": "string",
            "nullable": true
          },
          "fBank": {
            "type": "string",
            "nullable": true
          },
          "fAccount": {
            "type": "string",
            "nullable": true
          },
          "fBankNumber": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fBoundAttr": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fShortName": {
            "type": "string",
            "nullable": true
          },
          "fPriorityId": {
            "type": "number",
            "nullable": true
          },
          "fpoGroupId": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fLanguageId": {
            "type": "number",
            "nullable": true
          },
          "fRegionId": {
            "type": "number",
            "nullable": true
          },
          "fTrade": {
            "type": "number",
            "nullable": true
          },
          "fMinPoValue": {
            "type": "number",
            "nullable": true
          },
          "fMaxDebitDate": {
            "type": "number",
            "nullable": true
          },
          "fLegalPerson": {
            "type": "string",
            "nullable": true
          },
          "fContact": {
            "type": "string",
            "nullable": true
          },
          "fContactAcct": {
            "type": "string",
            "nullable": true
          },
          "fPhoneAcct": {
            "type": "string",
            "nullable": true
          },
          "fFaxAcct": {
            "type": "string",
            "nullable": true
          },
          "fZipAcct": {
            "type": "string",
            "nullable": true
          },
          "fEmailAcct": {
            "type": "string",
            "nullable": true
          },
          "fAddrAcct": {
            "type": "string",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fCyId": {
            "type": "number",
            "nullable": true
          },
          "fSetId": {
            "type": "number",
            "nullable": true
          },
          "fSetDLineId": {
            "type": "number",
            "nullable": true
          },
          "fTaxNum": {
            "type": "string",
            "nullable": true
          },
          "fPriceClsId": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fciqNumber": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSaleMode": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "farAccountId": {
            "type": "number",
            "nullable": true
          },
          "fapAccountId": {
            "type": "number",
            "nullable": true
          },
          "fpreAcctId": {
            "type": "number",
            "nullable": true
          },
          "flastTradeAmount": {
            "type": "string",
            "nullable": true
          },
          "flastRpAmount": {
            "type": "string",
            "nullable": true
          },
          "ffavorPolicy": {
            "type": "string",
            "nullable": true
          },
          "fdepartment": {
            "type": "number",
            "nullable": true
          },
          "femployee": {
            "type": "number",
            "nullable": true
          },
          "fcorperate": {
            "type": "string",
            "nullable": true
          },
          "fbeginTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fendTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "flastTradeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "flastReceiveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fcashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fcurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fmaxDealAmount": {
            "type": "number",
            "nullable": true
          },
          "fminForeReceiveRate": {
            "type": "number",
            "nullable": true
          },
          "fminReserverate": {
            "type": "number",
            "nullable": true
          },
          "fdebtLevel": {
            "type": "number",
            "nullable": true
          },
          "fCarryingAos": {
            "type": "number",
            "nullable": true
          },
          "fIsCreditMgr": {
            "type": "string",
            "nullable": true
          },
          "fCreditPeriod": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "number",
            "nullable": true
          },
          "fPayTaxAcctId": {
            "type": "number",
            "nullable": true
          },
          "fValueAddRate": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fStockIdAssign": {
            "type": "number",
            "nullable": true
          },
          "fStockIdInst": {
            "type": "number",
            "nullable": true
          },
          "fStockIdKeep": {
            "type": "number",
            "nullable": true
          },
          "fPaperPeriod": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAlarmPeriod": {
            "type": "number",
            "nullable": true
          },
          "fLicAndPermit": {
            "type": "string",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fSaleId": {
            "type": "number",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fAddrEn": {
            "type": "string",
            "nullable": true
          },
          "fciqCode": {
            "type": "string",
            "nullable": true
          },
          "fRegion": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fPayCondition": {
            "type": "number",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fClass": {
            "type": "number",
            "nullable": true
          },
          "fValue": {
            "type": "string",
            "nullable": true
          },
          "fRegUserId": {
            "type": "number",
            "nullable": true
          },
          "fLastModifyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRecentContactDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fRegDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFlat": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fCoSupplierId": {
            "type": "number",
            "nullable": true
          },
          "fShareStatus": {
            "type": "number",
            "nullable": true
          },
          "fCustType": {
            "type": "number",
            "nullable": true
          },
          "fSuperiorId": {
            "type": "number",
            "nullable": true
          },
          "fClueId": {
            "type": "number",
            "nullable": true
          },
          "fLastMailTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "fSex": {
            "type": "string",
            "nullable": true
          },
          "fMobile": {
            "type": "string",
            "nullable": true
          },
          "fDuty": {
            "type": "string",
            "nullable": true
          },
          "fWorkSite": {
            "type": "string",
            "nullable": true
          },
          "fWorkUnit": {
            "type": "string",
            "nullable": true
          },
          "fIncomeLevel": {
            "type": "number",
            "nullable": true
          },
          "fStratum": {
            "type": "number",
            "nullable": true
          },
          "fAge": {
            "type": "number",
            "nullable": true
          },
          "fBirthday": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fNation": {
            "type": "string",
            "nullable": true
          },
          "fBizPostCode": {
            "type": "string",
            "nullable": true
          },
          "fim": {
            "type": "string",
            "nullable": true
          },
          "fBizPhone": {
            "type": "string",
            "nullable": true
          },
          "fLastActivityTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastSvTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastCallTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLastSmsTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExpired": {
            "type": "number",
            "nullable": true
          },
          "fLastAssignTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TOrganization>"
      },
      "K3TMeasureUnit": {
        "title": "K3TMeasureUnit",
        "type": "object",
        "properties": {
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fAuxClass": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fConversation": {
            "type": "number",
            "nullable": true
          },
          "fCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fPrecision": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fOperDate": {
            "type": "string",
            "nullable": true
          },
          "fScale": {
            "type": "number",
            "nullable": true
          },
          "fStandard": {
            "type": "number",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fNameEnPlu": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TMeasureUnit": {
        "title": "NewK3TMeasureUnit",
        "type": "object",
        "description": "(tsType: K3TMeasureUnit, schemaOptions: { title: 'NewK3TMeasureUnit' })",
        "properties": {
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fAuxClass": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fConversation": {
            "type": "number",
            "nullable": true
          },
          "fCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fPrecision": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fOperDate": {
            "type": "string",
            "nullable": true
          },
          "fScale": {
            "type": "number",
            "nullable": true
          },
          "fStandard": {
            "type": "number",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fNameEnPlu": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TMeasureUnit"
      },
      "K3TMeasureUnitWithRelations": {
        "title": "K3TMeasureUnitWithRelations",
        "type": "object",
        "description": "(tsType: K3TMeasureUnitWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fAuxClass": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fConversation": {
            "type": "number",
            "nullable": true
          },
          "fCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fPrecision": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fOperDate": {
            "type": "string",
            "nullable": true
          },
          "fScale": {
            "type": "number",
            "nullable": true
          },
          "fStandard": {
            "type": "number",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fNameEnPlu": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TMeasureUnitWithRelations"
      },
      "K3TMeasureUnitPartial": {
        "title": "K3TMeasureUnitPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TMeasureUnit>, schemaOptions: { partial: true })",
        "properties": {
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fAuxClass": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fConversation": {
            "type": "number",
            "nullable": true
          },
          "fCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fPrecision": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fOperDate": {
            "type": "string",
            "nullable": true
          },
          "fScale": {
            "type": "number",
            "nullable": true
          },
          "fStandard": {
            "type": "number",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fNameEn": {
            "type": "string",
            "nullable": true
          },
          "fNameEnPlu": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TMeasureUnit>"
      },
      "K3TIcItemCustom": {
        "title": "K3TIcItemCustom",
        "type": "object",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "f_102": {
            "type": "number",
            "nullable": true
          },
          "f_103": {
            "type": "number",
            "nullable": true
          },
          "f_105": {
            "type": "string",
            "nullable": true
          },
          "f_106": {
            "type": "number",
            "nullable": true
          },
          "f_107": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TIcItemCustom": {
        "title": "NewK3TIcItemCustom",
        "type": "object",
        "description": "(tsType: K3TIcItemCustom, schemaOptions: { title: 'NewK3TIcItemCustom' })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "f_102": {
            "type": "number",
            "nullable": true
          },
          "f_103": {
            "type": "number",
            "nullable": true
          },
          "f_105": {
            "type": "string",
            "nullable": true
          },
          "f_106": {
            "type": "number",
            "nullable": true
          },
          "f_107": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TIcItemCustom"
      },
      "K3TIcItemCustomWithRelations": {
        "title": "K3TIcItemCustomWithRelations",
        "type": "object",
        "description": "(tsType: K3TIcItemCustomWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "f_102": {
            "type": "number",
            "nullable": true
          },
          "f_103": {
            "type": "number",
            "nullable": true
          },
          "f_105": {
            "type": "string",
            "nullable": true
          },
          "f_106": {
            "type": "number",
            "nullable": true
          },
          "f_107": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TIcItemCustomWithRelations"
      },
      "K3TIcItemCustomPartial": {
        "title": "K3TIcItemCustomPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TIcItemCustom>, schemaOptions: { partial: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "f_102": {
            "type": "number",
            "nullable": true
          },
          "f_103": {
            "type": "number",
            "nullable": true
          },
          "f_105": {
            "type": "string",
            "nullable": true
          },
          "f_106": {
            "type": "number",
            "nullable": true
          },
          "f_107": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TIcItemCustom>"
      },
      "K3TIcItemCore": {
        "title": "K3TIcItemCore",
        "type": "object",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fModel": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fModifyTime": {
            "type": "string",
            "format": "binary",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fTopId": {
            "type": "number",
            "nullable": true
          },
          "frp": {
            "type": "number",
            "nullable": true
          },
          "fOmortize": {
            "type": "number",
            "nullable": true
          },
          "fOmortizeScale": {
            "type": "number",
            "nullable": true
          },
          "fForSale": {
            "type": "string",
            "nullable": true
          },
          "fStaCost": {
            "type": "number",
            "nullable": true
          },
          "fOrderPrice": {
            "type": "number",
            "nullable": true
          },
          "fOrderMethod": {
            "type": "number",
            "nullable": true
          },
          "fPriceFixingType": {
            "type": "number",
            "nullable": true
          },
          "fSalePriceFixingType": {
            "type": "number",
            "nullable": true
          },
          "fPerWastage": {
            "type": "number",
            "nullable": true
          },
          "farAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPlanPriceMethod": {
            "type": "number",
            "nullable": true
          },
          "fPlanClass": {
            "type": "number",
            "nullable": true
          },
          "fpy": {
            "type": "string",
            "nullable": true
          },
          "fPinYin": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TIcItemCore": {
        "title": "NewK3TIcItemCore",
        "type": "object",
        "description": "(tsType: K3TIcItemCore, schemaOptions: { title: 'NewK3TIcItemCore' })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fModel": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fModifyTime": {
            "type": "string",
            "format": "binary",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fTopId": {
            "type": "number",
            "nullable": true
          },
          "frp": {
            "type": "number",
            "nullable": true
          },
          "fOmortize": {
            "type": "number",
            "nullable": true
          },
          "fOmortizeScale": {
            "type": "number",
            "nullable": true
          },
          "fForSale": {
            "type": "string",
            "nullable": true
          },
          "fStaCost": {
            "type": "number",
            "nullable": true
          },
          "fOrderPrice": {
            "type": "number",
            "nullable": true
          },
          "fOrderMethod": {
            "type": "number",
            "nullable": true
          },
          "fPriceFixingType": {
            "type": "number",
            "nullable": true
          },
          "fSalePriceFixingType": {
            "type": "number",
            "nullable": true
          },
          "fPerWastage": {
            "type": "number",
            "nullable": true
          },
          "farAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPlanPriceMethod": {
            "type": "number",
            "nullable": true
          },
          "fPlanClass": {
            "type": "number",
            "nullable": true
          },
          "fpy": {
            "type": "string",
            "nullable": true
          },
          "fPinYin": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TIcItemCore"
      },
      "K3TIcItemCoreWithRelations": {
        "title": "K3TIcItemCoreWithRelations",
        "type": "object",
        "description": "(tsType: K3TIcItemCoreWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fModel": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fModifyTime": {
            "type": "string",
            "format": "binary",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fTopId": {
            "type": "number",
            "nullable": true
          },
          "frp": {
            "type": "number",
            "nullable": true
          },
          "fOmortize": {
            "type": "number",
            "nullable": true
          },
          "fOmortizeScale": {
            "type": "number",
            "nullable": true
          },
          "fForSale": {
            "type": "string",
            "nullable": true
          },
          "fStaCost": {
            "type": "number",
            "nullable": true
          },
          "fOrderPrice": {
            "type": "number",
            "nullable": true
          },
          "fOrderMethod": {
            "type": "number",
            "nullable": true
          },
          "fPriceFixingType": {
            "type": "number",
            "nullable": true
          },
          "fSalePriceFixingType": {
            "type": "number",
            "nullable": true
          },
          "fPerWastage": {
            "type": "number",
            "nullable": true
          },
          "farAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPlanPriceMethod": {
            "type": "number",
            "nullable": true
          },
          "fPlanClass": {
            "type": "number",
            "nullable": true
          },
          "fpy": {
            "type": "string",
            "nullable": true
          },
          "fPinYin": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TIcItemCoreWithRelations"
      },
      "K3TIcItemCorePartial": {
        "title": "K3TIcItemCorePartial",
        "type": "object",
        "description": "(tsType: Partial<K3TIcItemCore>, schemaOptions: { partial: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fModel": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fHelpCode": {
            "type": "string",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fModifyTime": {
            "type": "string",
            "format": "binary",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fTopId": {
            "type": "number",
            "nullable": true
          },
          "frp": {
            "type": "number",
            "nullable": true
          },
          "fOmortize": {
            "type": "number",
            "nullable": true
          },
          "fOmortizeScale": {
            "type": "number",
            "nullable": true
          },
          "fForSale": {
            "type": "string",
            "nullable": true
          },
          "fStaCost": {
            "type": "number",
            "nullable": true
          },
          "fOrderPrice": {
            "type": "number",
            "nullable": true
          },
          "fOrderMethod": {
            "type": "number",
            "nullable": true
          },
          "fPriceFixingType": {
            "type": "number",
            "nullable": true
          },
          "fSalePriceFixingType": {
            "type": "number",
            "nullable": true
          },
          "fPerWastage": {
            "type": "number",
            "nullable": true
          },
          "farAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPlanPriceMethod": {
            "type": "number",
            "nullable": true
          },
          "fPlanClass": {
            "type": "number",
            "nullable": true
          },
          "fpy": {
            "type": "string",
            "nullable": true
          },
          "fPinYin": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TIcItemCore>"
      },
      "K3TIcItemBase": {
        "title": "K3TIcItemBase",
        "type": "object",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fDefaultLoc": {
            "type": "number",
            "nullable": true
          },
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fSource": {
            "type": "number",
            "nullable": true
          },
          "fQtyDecimal": {
            "type": "number",
            "nullable": true
          },
          "fLowLimit": {
            "type": "number",
            "nullable": true
          },
          "fHighLimit": {
            "type": "number",
            "nullable": true
          },
          "fSecInv": {
            "type": "number",
            "nullable": true
          },
          "fUseState": {
            "type": "number",
            "nullable": true
          },
          "fIsEquipment": {
            "type": "string",
            "nullable": true
          },
          "fEquipmentNum": {
            "type": "string",
            "nullable": true
          },
          "fIsSparePart": {
            "type": "string",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fSecUnitId": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecUnitDecimal": {
            "type": "number",
            "nullable": true
          },
          "fAlias": {
            "type": "string",
            "nullable": true
          },
          "fOrderUnitId": {
            "type": "number",
            "nullable": true
          },
          "fSaleUnitId": {
            "type": "number",
            "nullable": true
          },
          "fStoreUnitId": {
            "type": "number",
            "nullable": true
          },
          "fProductUnitId": {
            "type": "number",
            "nullable": true
          },
          "fApproveNo": {
            "type": "string",
            "nullable": true
          },
          "fAuxClassId": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fPreDeadLine": {
            "type": "number",
            "nullable": true
          },
          "fSerialClassId": {
            "type": "number",
            "nullable": true
          },
          "fDefaultReadyLoc": {
            "type": "number",
            "nullable": true
          },
          "fspidReady": {
            "type": "number",
            "nullable": true
          },
          "fdsManagerId": {
            "type": "number",
            "nullable": true
          },
          "fForbBitBarcodeEdit": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TIcItemBase": {
        "title": "NewK3TIcItemBase",
        "type": "object",
        "description": "(tsType: K3TIcItemBase, schemaOptions: { title: 'NewK3TIcItemBase' })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fDefaultLoc": {
            "type": "number",
            "nullable": true
          },
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fSource": {
            "type": "number",
            "nullable": true
          },
          "fQtyDecimal": {
            "type": "number",
            "nullable": true
          },
          "fLowLimit": {
            "type": "number",
            "nullable": true
          },
          "fHighLimit": {
            "type": "number",
            "nullable": true
          },
          "fSecInv": {
            "type": "number",
            "nullable": true
          },
          "fUseState": {
            "type": "number",
            "nullable": true
          },
          "fIsEquipment": {
            "type": "string",
            "nullable": true
          },
          "fEquipmentNum": {
            "type": "string",
            "nullable": true
          },
          "fIsSparePart": {
            "type": "string",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fSecUnitId": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecUnitDecimal": {
            "type": "number",
            "nullable": true
          },
          "fAlias": {
            "type": "string",
            "nullable": true
          },
          "fOrderUnitId": {
            "type": "number",
            "nullable": true
          },
          "fSaleUnitId": {
            "type": "number",
            "nullable": true
          },
          "fStoreUnitId": {
            "type": "number",
            "nullable": true
          },
          "fProductUnitId": {
            "type": "number",
            "nullable": true
          },
          "fApproveNo": {
            "type": "string",
            "nullable": true
          },
          "fAuxClassId": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fPreDeadLine": {
            "type": "number",
            "nullable": true
          },
          "fSerialClassId": {
            "type": "number",
            "nullable": true
          },
          "fDefaultReadyLoc": {
            "type": "number",
            "nullable": true
          },
          "fspidReady": {
            "type": "number",
            "nullable": true
          },
          "fdsManagerId": {
            "type": "number",
            "nullable": true
          },
          "fForbBitBarcodeEdit": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TIcItemBase"
      },
      "K3TIcItemBaseWithRelations": {
        "title": "K3TIcItemBaseWithRelations",
        "type": "object",
        "description": "(tsType: K3TIcItemBaseWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fDefaultLoc": {
            "type": "number",
            "nullable": true
          },
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fSource": {
            "type": "number",
            "nullable": true
          },
          "fQtyDecimal": {
            "type": "number",
            "nullable": true
          },
          "fLowLimit": {
            "type": "number",
            "nullable": true
          },
          "fHighLimit": {
            "type": "number",
            "nullable": true
          },
          "fSecInv": {
            "type": "number",
            "nullable": true
          },
          "fUseState": {
            "type": "number",
            "nullable": true
          },
          "fIsEquipment": {
            "type": "string",
            "nullable": true
          },
          "fEquipmentNum": {
            "type": "string",
            "nullable": true
          },
          "fIsSparePart": {
            "type": "string",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fSecUnitId": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecUnitDecimal": {
            "type": "number",
            "nullable": true
          },
          "fAlias": {
            "type": "string",
            "nullable": true
          },
          "fOrderUnitId": {
            "type": "number",
            "nullable": true
          },
          "fSaleUnitId": {
            "type": "number",
            "nullable": true
          },
          "fStoreUnitId": {
            "type": "number",
            "nullable": true
          },
          "fProductUnitId": {
            "type": "number",
            "nullable": true
          },
          "fApproveNo": {
            "type": "string",
            "nullable": true
          },
          "fAuxClassId": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fPreDeadLine": {
            "type": "number",
            "nullable": true
          },
          "fSerialClassId": {
            "type": "number",
            "nullable": true
          },
          "fDefaultReadyLoc": {
            "type": "number",
            "nullable": true
          },
          "fspidReady": {
            "type": "number",
            "nullable": true
          },
          "fdsManagerId": {
            "type": "number",
            "nullable": true
          },
          "fForbBitBarcodeEdit": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TIcItemBaseWithRelations"
      },
      "K3TIcItemBasePartial": {
        "title": "K3TIcItemBasePartial",
        "type": "object",
        "description": "(tsType: Partial<K3TIcItemBase>, schemaOptions: { partial: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fErpClsId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fDefaultLoc": {
            "type": "number",
            "nullable": true
          },
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fSource": {
            "type": "number",
            "nullable": true
          },
          "fQtyDecimal": {
            "type": "number",
            "nullable": true
          },
          "fLowLimit": {
            "type": "number",
            "nullable": true
          },
          "fHighLimit": {
            "type": "number",
            "nullable": true
          },
          "fSecInv": {
            "type": "number",
            "nullable": true
          },
          "fUseState": {
            "type": "number",
            "nullable": true
          },
          "fIsEquipment": {
            "type": "string",
            "nullable": true
          },
          "fEquipmentNum": {
            "type": "string",
            "nullable": true
          },
          "fIsSparePart": {
            "type": "string",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fSecUnitId": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecUnitDecimal": {
            "type": "number",
            "nullable": true
          },
          "fAlias": {
            "type": "string",
            "nullable": true
          },
          "fOrderUnitId": {
            "type": "number",
            "nullable": true
          },
          "fSaleUnitId": {
            "type": "number",
            "nullable": true
          },
          "fStoreUnitId": {
            "type": "number",
            "nullable": true
          },
          "fProductUnitId": {
            "type": "number",
            "nullable": true
          },
          "fApproveNo": {
            "type": "string",
            "nullable": true
          },
          "fAuxClassId": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fPreDeadLine": {
            "type": "number",
            "nullable": true
          },
          "fSerialClassId": {
            "type": "number",
            "nullable": true
          },
          "fDefaultReadyLoc": {
            "type": "number",
            "nullable": true
          },
          "fspidReady": {
            "type": "number",
            "nullable": true
          },
          "fdsManagerId": {
            "type": "number",
            "nullable": true
          },
          "fForbBitBarcodeEdit": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TIcItemBase>"
      },
      "K3TDepartment": {
        "title": "K3TDepartment",
        "type": "object",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TDepartment": {
        "title": "NewK3TDepartment",
        "type": "object",
        "description": "(tsType: K3TDepartment, schemaOptions: { title: 'NewK3TDepartment' })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TDepartment"
      },
      "K3TDepartmentWithRelations": {
        "title": "K3TDepartmentWithRelations",
        "type": "object",
        "description": "(tsType: K3TDepartmentWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TDepartmentWithRelations"
      },
      "K3TDepartmentPartial": {
        "title": "K3TDepartmentPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TDepartment>, schemaOptions: { partial: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TDepartment>"
      },
      "K3TCurrency": {
        "title": "K3TCurrency",
        "type": "object",
        "properties": {
          "fCurrencyId": {
            "type": "number",
            "nullable": false
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fOperator": {
            "type": "string",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fScale": {
            "type": "number",
            "nullable": true
          },
          "fFixRate": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "fCurrencyId"
        ],
        "additionalProperties": false
      },
      "NewK3TCurrency": {
        "title": "NewK3TCurrency",
        "type": "object",
        "description": "(tsType: K3TCurrency, schemaOptions: { title: 'NewK3TCurrency' })",
        "properties": {
          "fCurrencyId": {
            "type": "number",
            "nullable": false
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fOperator": {
            "type": "string",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fScale": {
            "type": "number",
            "nullable": true
          },
          "fFixRate": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "fCurrencyId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "K3TCurrency"
      },
      "K3TCurrencyWithRelations": {
        "title": "K3TCurrencyWithRelations",
        "type": "object",
        "description": "(tsType: K3TCurrencyWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fCurrencyId": {
            "type": "number",
            "nullable": false
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fOperator": {
            "type": "string",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fScale": {
            "type": "number",
            "nullable": true
          },
          "fFixRate": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "fCurrencyId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "K3TCurrencyWithRelations"
      },
      "K3TCurrencyPartial": {
        "title": "K3TCurrencyPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TCurrency>, schemaOptions: { partial: true })",
        "properties": {
          "fCurrencyId": {
            "type": "number",
            "nullable": false
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fOperator": {
            "type": "string",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fScale": {
            "type": "number",
            "nullable": true
          },
          "fFixRate": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TCurrency>"
      },
      "K3TBaseUser": {
        "title": "K3TBaseUser",
        "type": "object",
        "properties": {
          "fUserId": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fsid": {
            "type": "string",
            "nullable": true
          },
          "fPrimaryGroup": {
            "type": "number",
            "nullable": true
          },
          "fDescription": {
            "type": "string",
            "nullable": true
          },
          "fForbidden": {
            "type": "string",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fDataVokeType": {
            "type": "number",
            "nullable": true
          },
          "fIsNeedOffline": {
            "type": "string",
            "nullable": true
          },
          "fRightChanged": {
            "type": "string",
            "nullable": true
          },
          "fOfflineRefeshEachTime": {
            "type": "string",
            "nullable": true
          },
          "fSafeMode": {
            "type": "number",
            "nullable": true
          },
          "fhrUser": {
            "type": "number",
            "nullable": true
          },
          "fssoUsername": {
            "type": "string",
            "nullable": true
          },
          "fscPwd": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fAccessUuid": {
            "type": "number",
            "nullable": true
          },
          "fuInValidDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPwCreateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPwValidDay": {
            "type": "number",
            "nullable": true
          },
          "fAuthRight": {
            "type": "number",
            "nullable": true
          },
          "fUserTypeId": {
            "type": "number",
            "nullable": true
          },
          "fPortUser": {
            "type": "string",
            "nullable": true
          },
          "fSupplierId": {
            "type": "string",
            "nullable": true
          },
          "fCustomerId": {
            "type": "number",
            "nullable": true
          },
          "fimUserName": {
            "type": "string",
            "nullable": true
          },
          "fCreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupUnit": {
            "type": "string",
            "nullable": true
          },
          "fyzjSafeMode": {
            "type": "number",
            "nullable": true
          },
          "ffxMsgUser": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TBaseUser": {
        "title": "NewK3TBaseUser",
        "type": "object",
        "description": "(tsType: K3TBaseUser, schemaOptions: { title: 'NewK3TBaseUser' })",
        "properties": {
          "fUserId": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fsid": {
            "type": "string",
            "nullable": true
          },
          "fPrimaryGroup": {
            "type": "number",
            "nullable": true
          },
          "fDescription": {
            "type": "string",
            "nullable": true
          },
          "fForbidden": {
            "type": "string",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fDataVokeType": {
            "type": "number",
            "nullable": true
          },
          "fIsNeedOffline": {
            "type": "string",
            "nullable": true
          },
          "fRightChanged": {
            "type": "string",
            "nullable": true
          },
          "fOfflineRefeshEachTime": {
            "type": "string",
            "nullable": true
          },
          "fSafeMode": {
            "type": "number",
            "nullable": true
          },
          "fhrUser": {
            "type": "number",
            "nullable": true
          },
          "fssoUsername": {
            "type": "string",
            "nullable": true
          },
          "fscPwd": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fAccessUuid": {
            "type": "number",
            "nullable": true
          },
          "fuInValidDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPwCreateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPwValidDay": {
            "type": "number",
            "nullable": true
          },
          "fAuthRight": {
            "type": "number",
            "nullable": true
          },
          "fUserTypeId": {
            "type": "number",
            "nullable": true
          },
          "fPortUser": {
            "type": "string",
            "nullable": true
          },
          "fSupplierId": {
            "type": "string",
            "nullable": true
          },
          "fCustomerId": {
            "type": "number",
            "nullable": true
          },
          "fimUserName": {
            "type": "string",
            "nullable": true
          },
          "fCreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupUnit": {
            "type": "string",
            "nullable": true
          },
          "fyzjSafeMode": {
            "type": "number",
            "nullable": true
          },
          "ffxMsgUser": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TBaseUser"
      },
      "K3TBaseUserWithRelations": {
        "title": "K3TBaseUserWithRelations",
        "type": "object",
        "description": "(tsType: K3TBaseUserWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fUserId": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fsid": {
            "type": "string",
            "nullable": true
          },
          "fPrimaryGroup": {
            "type": "number",
            "nullable": true
          },
          "fDescription": {
            "type": "string",
            "nullable": true
          },
          "fForbidden": {
            "type": "string",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fDataVokeType": {
            "type": "number",
            "nullable": true
          },
          "fIsNeedOffline": {
            "type": "string",
            "nullable": true
          },
          "fRightChanged": {
            "type": "string",
            "nullable": true
          },
          "fOfflineRefeshEachTime": {
            "type": "string",
            "nullable": true
          },
          "fSafeMode": {
            "type": "number",
            "nullable": true
          },
          "fhrUser": {
            "type": "number",
            "nullable": true
          },
          "fssoUsername": {
            "type": "string",
            "nullable": true
          },
          "fscPwd": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fAccessUuid": {
            "type": "number",
            "nullable": true
          },
          "fuInValidDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPwCreateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPwValidDay": {
            "type": "number",
            "nullable": true
          },
          "fAuthRight": {
            "type": "number",
            "nullable": true
          },
          "fUserTypeId": {
            "type": "number",
            "nullable": true
          },
          "fPortUser": {
            "type": "string",
            "nullable": true
          },
          "fSupplierId": {
            "type": "string",
            "nullable": true
          },
          "fCustomerId": {
            "type": "number",
            "nullable": true
          },
          "fimUserName": {
            "type": "string",
            "nullable": true
          },
          "fCreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupUnit": {
            "type": "string",
            "nullable": true
          },
          "fyzjSafeMode": {
            "type": "number",
            "nullable": true
          },
          "ffxMsgUser": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TBaseUserWithRelations"
      },
      "K3TBaseUserPartial": {
        "title": "K3TBaseUserPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TBaseUser>, schemaOptions: { partial: true })",
        "properties": {
          "fUserId": {
            "type": "number",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fsid": {
            "type": "string",
            "nullable": true
          },
          "fPrimaryGroup": {
            "type": "number",
            "nullable": true
          },
          "fDescription": {
            "type": "string",
            "nullable": true
          },
          "fForbidden": {
            "type": "string",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fDataVokeType": {
            "type": "number",
            "nullable": true
          },
          "fIsNeedOffline": {
            "type": "string",
            "nullable": true
          },
          "fRightChanged": {
            "type": "string",
            "nullable": true
          },
          "fOfflineRefeshEachTime": {
            "type": "string",
            "nullable": true
          },
          "fSafeMode": {
            "type": "number",
            "nullable": true
          },
          "fhrUser": {
            "type": "number",
            "nullable": true
          },
          "fssoUsername": {
            "type": "string",
            "nullable": true
          },
          "fscPwd": {
            "type": "string",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fAccessUuid": {
            "type": "number",
            "nullable": true
          },
          "fuInValidDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPwCreateDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPwValidDay": {
            "type": "number",
            "nullable": true
          },
          "fAuthRight": {
            "type": "number",
            "nullable": true
          },
          "fUserTypeId": {
            "type": "number",
            "nullable": true
          },
          "fPortUser": {
            "type": "string",
            "nullable": true
          },
          "fSupplierId": {
            "type": "string",
            "nullable": true
          },
          "fCustomerId": {
            "type": "number",
            "nullable": true
          },
          "fimUserName": {
            "type": "string",
            "nullable": true
          },
          "fCreateTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupUnit": {
            "type": "string",
            "nullable": true
          },
          "fyzjSafeMode": {
            "type": "number",
            "nullable": true
          },
          "ffxMsgUser": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TBaseUser>"
      },
      "K3TBaseEmp": {
        "title": "K3TBaseEmp",
        "type": "object",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fGender": {
            "type": "number",
            "nullable": true
          },
          "fBirthday": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fid": {
            "type": "string",
            "nullable": true
          },
          "fDuty": {
            "type": "number",
            "nullable": true
          },
          "fDegree": {
            "type": "number",
            "nullable": true
          },
          "fHireDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLeaveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmpGroupId": {
            "type": "number",
            "nullable": true
          },
          "fItemDepId": {
            "type": "number",
            "nullable": true
          },
          "fBankId": {
            "type": "number",
            "nullable": true
          },
          "fBankAccount": {
            "type": "string",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fDepartmentId": {
            "type": "number",
            "nullable": true
          },
          "fEmpGroup": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fIsCreditMgr": {
            "type": "string",
            "nullable": true
          },
          "fCreditPeriod": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "number",
            "nullable": true
          },
          "fProfessionalGroup": {
            "type": "number",
            "nullable": true
          },
          "fOperationGroup": {
            "type": "number",
            "nullable": true
          },
          "fJobTypeId": {
            "type": "number",
            "nullable": true
          },
          "fAllotPercent": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fAccountName": {
            "type": "string",
            "nullable": true
          },
          "fPersonalBank": {
            "type": "string",
            "nullable": true
          },
          "fAllotWeight": {
            "type": "number",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          },
          "fmfgCardNo": {
            "type": "string",
            "nullable": true
          },
          "fFingerprintCardNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TBaseEmp": {
        "title": "NewK3TBaseEmp",
        "type": "object",
        "description": "(tsType: K3TBaseEmp, schemaOptions: { title: 'NewK3TBaseEmp' })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fGender": {
            "type": "number",
            "nullable": true
          },
          "fBirthday": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fid": {
            "type": "string",
            "nullable": true
          },
          "fDuty": {
            "type": "number",
            "nullable": true
          },
          "fDegree": {
            "type": "number",
            "nullable": true
          },
          "fHireDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLeaveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmpGroupId": {
            "type": "number",
            "nullable": true
          },
          "fItemDepId": {
            "type": "number",
            "nullable": true
          },
          "fBankId": {
            "type": "number",
            "nullable": true
          },
          "fBankAccount": {
            "type": "string",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fDepartmentId": {
            "type": "number",
            "nullable": true
          },
          "fEmpGroup": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fIsCreditMgr": {
            "type": "string",
            "nullable": true
          },
          "fCreditPeriod": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "number",
            "nullable": true
          },
          "fProfessionalGroup": {
            "type": "number",
            "nullable": true
          },
          "fOperationGroup": {
            "type": "number",
            "nullable": true
          },
          "fJobTypeId": {
            "type": "number",
            "nullable": true
          },
          "fAllotPercent": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fAccountName": {
            "type": "string",
            "nullable": true
          },
          "fPersonalBank": {
            "type": "string",
            "nullable": true
          },
          "fAllotWeight": {
            "type": "number",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          },
          "fmfgCardNo": {
            "type": "string",
            "nullable": true
          },
          "fFingerprintCardNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TBaseEmp"
      },
      "K3TBaseEmpWithRelations": {
        "title": "K3TBaseEmpWithRelations",
        "type": "object",
        "description": "(tsType: K3TBaseEmpWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fGender": {
            "type": "number",
            "nullable": true
          },
          "fBirthday": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fid": {
            "type": "string",
            "nullable": true
          },
          "fDuty": {
            "type": "number",
            "nullable": true
          },
          "fDegree": {
            "type": "number",
            "nullable": true
          },
          "fHireDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLeaveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmpGroupId": {
            "type": "number",
            "nullable": true
          },
          "fItemDepId": {
            "type": "number",
            "nullable": true
          },
          "fBankId": {
            "type": "number",
            "nullable": true
          },
          "fBankAccount": {
            "type": "string",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fDepartmentId": {
            "type": "number",
            "nullable": true
          },
          "fEmpGroup": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fIsCreditMgr": {
            "type": "string",
            "nullable": true
          },
          "fCreditPeriod": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "number",
            "nullable": true
          },
          "fProfessionalGroup": {
            "type": "number",
            "nullable": true
          },
          "fOperationGroup": {
            "type": "number",
            "nullable": true
          },
          "fJobTypeId": {
            "type": "number",
            "nullable": true
          },
          "fAllotPercent": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fAccountName": {
            "type": "string",
            "nullable": true
          },
          "fPersonalBank": {
            "type": "string",
            "nullable": true
          },
          "fAllotWeight": {
            "type": "number",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          },
          "fmfgCardNo": {
            "type": "string",
            "nullable": true
          },
          "fFingerprintCardNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TBaseEmpWithRelations"
      },
      "K3TBaseEmpPartial": {
        "title": "K3TBaseEmpPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TBaseEmp>, schemaOptions: { partial: true })",
        "properties": {
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fGender": {
            "type": "number",
            "nullable": true
          },
          "fBirthday": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmail": {
            "type": "string",
            "nullable": true
          },
          "fAddress": {
            "type": "string",
            "nullable": true
          },
          "fPhone": {
            "type": "string",
            "nullable": true
          },
          "fid": {
            "type": "string",
            "nullable": true
          },
          "fDuty": {
            "type": "number",
            "nullable": true
          },
          "fDegree": {
            "type": "number",
            "nullable": true
          },
          "fHireDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLeaveDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmpGroupId": {
            "type": "number",
            "nullable": true
          },
          "fItemDepId": {
            "type": "number",
            "nullable": true
          },
          "fBankId": {
            "type": "number",
            "nullable": true
          },
          "fBankAccount": {
            "type": "string",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fDeleted": {
            "type": "number",
            "nullable": true
          },
          "fDepartmentId": {
            "type": "number",
            "nullable": true
          },
          "fEmpGroup": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fShortNumber": {
            "type": "string",
            "nullable": true
          },
          "fIsCreditMgr": {
            "type": "string",
            "nullable": true
          },
          "fCreditPeriod": {
            "type": "number",
            "nullable": true
          },
          "fCreditLevel": {
            "type": "number",
            "nullable": true
          },
          "fProfessionalGroup": {
            "type": "number",
            "nullable": true
          },
          "fOperationGroup": {
            "type": "number",
            "nullable": true
          },
          "fJobTypeId": {
            "type": "number",
            "nullable": true
          },
          "fAllotPercent": {
            "type": "number",
            "nullable": true
          },
          "fCreditDays": {
            "type": "number",
            "nullable": true
          },
          "fCreditAmount": {
            "type": "number",
            "nullable": true
          },
          "fOtherArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fOtherApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreArAcctId": {
            "type": "number",
            "nullable": true
          },
          "fPreApAcctId": {
            "type": "number",
            "nullable": true
          },
          "fMobilePhone": {
            "type": "string",
            "nullable": true
          },
          "fAccountName": {
            "type": "string",
            "nullable": true
          },
          "fPersonalBank": {
            "type": "string",
            "nullable": true
          },
          "fAllotWeight": {
            "type": "number",
            "nullable": true
          },
          "fProvinceId": {
            "type": "number",
            "nullable": true
          },
          "fCityId": {
            "type": "number",
            "nullable": true
          },
          "fmfgCardNo": {
            "type": "string",
            "nullable": true
          },
          "fFingerprintCardNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TBaseEmp>"
      },
      "K3TAccount": {
        "title": "K3TAccount",
        "type": "object",
        "properties": {
          "fAccountId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fLevel": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "boolean",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fRootId": {
            "type": "number",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fdc": {
            "type": "number",
            "nullable": true
          },
          "fHelperCode": {
            "type": "string",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fAdjustRate": {
            "type": "string",
            "nullable": true
          },
          "fEarnAccountId": {
            "type": "number",
            "nullable": true
          },
          "fQuantities": {
            "type": "boolean",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fIsCash": {
            "type": "boolean",
            "nullable": true
          },
          "fIsBank": {
            "type": "boolean",
            "nullable": true
          },
          "fJournal": {
            "type": "boolean",
            "nullable": true
          },
          "fContact": {
            "type": "boolean",
            "nullable": true
          },
          "fIsCashFlow": {
            "type": "boolean",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fAcnt": {
            "type": "boolean",
            "nullable": true
          },
          "fLoan": {
            "type": "boolean",
            "nullable": true
          },
          "fDpst": {
            "type": "boolean",
            "nullable": true
          },
          "fStatedDpst": {
            "type": "boolean",
            "nullable": true
          },
          "fInterest": {
            "type": "boolean",
            "nullable": true
          },
          "fIsAcnt": {
            "type": "boolean",
            "nullable": true
          },
          "fIsBudget": {
            "type": "boolean",
            "nullable": true
          },
          "fAcntId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fAcctInt": {
            "type": "boolean",
            "nullable": true
          },
          "fIntRate": {
            "type": "number",
            "nullable": true
          },
          "fLastIntDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAcntType": {
            "type": "number",
            "nullable": true
          },
          "fTradeNum": {
            "type": "string",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fViewMsg": {
            "type": "boolean",
            "nullable": true
          },
          "fMessage": {
            "type": "string",
            "nullable": true
          },
          "fDelete": {
            "type": "number",
            "nullable": true
          },
          "fIsBusi": {
            "type": "number",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fControlSystem": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fcfItemId": {
            "type": "number",
            "nullable": true
          },
          "fSubCfItemId": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fIsParallel": {
            "type": "boolean",
            "nullable": true
          },
          "fIsDiffItem": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TAccount": {
        "title": "NewK3TAccount",
        "type": "object",
        "description": "(tsType: K3TAccount, schemaOptions: { title: 'NewK3TAccount' })",
        "properties": {
          "fAccountId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fLevel": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "boolean",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fRootId": {
            "type": "number",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fdc": {
            "type": "number",
            "nullable": true
          },
          "fHelperCode": {
            "type": "string",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fAdjustRate": {
            "type": "string",
            "nullable": true
          },
          "fEarnAccountId": {
            "type": "number",
            "nullable": true
          },
          "fQuantities": {
            "type": "boolean",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fIsCash": {
            "type": "boolean",
            "nullable": true
          },
          "fIsBank": {
            "type": "boolean",
            "nullable": true
          },
          "fJournal": {
            "type": "boolean",
            "nullable": true
          },
          "fContact": {
            "type": "boolean",
            "nullable": true
          },
          "fIsCashFlow": {
            "type": "boolean",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fAcnt": {
            "type": "boolean",
            "nullable": true
          },
          "fLoan": {
            "type": "boolean",
            "nullable": true
          },
          "fDpst": {
            "type": "boolean",
            "nullable": true
          },
          "fStatedDpst": {
            "type": "boolean",
            "nullable": true
          },
          "fInterest": {
            "type": "boolean",
            "nullable": true
          },
          "fIsAcnt": {
            "type": "boolean",
            "nullable": true
          },
          "fIsBudget": {
            "type": "boolean",
            "nullable": true
          },
          "fAcntId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fAcctInt": {
            "type": "boolean",
            "nullable": true
          },
          "fIntRate": {
            "type": "number",
            "nullable": true
          },
          "fLastIntDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAcntType": {
            "type": "number",
            "nullable": true
          },
          "fTradeNum": {
            "type": "string",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fViewMsg": {
            "type": "boolean",
            "nullable": true
          },
          "fMessage": {
            "type": "string",
            "nullable": true
          },
          "fDelete": {
            "type": "number",
            "nullable": true
          },
          "fIsBusi": {
            "type": "number",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fControlSystem": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fcfItemId": {
            "type": "number",
            "nullable": true
          },
          "fSubCfItemId": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fIsParallel": {
            "type": "boolean",
            "nullable": true
          },
          "fIsDiffItem": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TAccount"
      },
      "K3TAccountWithRelations": {
        "title": "K3TAccountWithRelations",
        "type": "object",
        "description": "(tsType: K3TAccountWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fAccountId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fLevel": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "boolean",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fRootId": {
            "type": "number",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fdc": {
            "type": "number",
            "nullable": true
          },
          "fHelperCode": {
            "type": "string",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fAdjustRate": {
            "type": "string",
            "nullable": true
          },
          "fEarnAccountId": {
            "type": "number",
            "nullable": true
          },
          "fQuantities": {
            "type": "boolean",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fIsCash": {
            "type": "boolean",
            "nullable": true
          },
          "fIsBank": {
            "type": "boolean",
            "nullable": true
          },
          "fJournal": {
            "type": "boolean",
            "nullable": true
          },
          "fContact": {
            "type": "boolean",
            "nullable": true
          },
          "fIsCashFlow": {
            "type": "boolean",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fAcnt": {
            "type": "boolean",
            "nullable": true
          },
          "fLoan": {
            "type": "boolean",
            "nullable": true
          },
          "fDpst": {
            "type": "boolean",
            "nullable": true
          },
          "fStatedDpst": {
            "type": "boolean",
            "nullable": true
          },
          "fInterest": {
            "type": "boolean",
            "nullable": true
          },
          "fIsAcnt": {
            "type": "boolean",
            "nullable": true
          },
          "fIsBudget": {
            "type": "boolean",
            "nullable": true
          },
          "fAcntId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fAcctInt": {
            "type": "boolean",
            "nullable": true
          },
          "fIntRate": {
            "type": "number",
            "nullable": true
          },
          "fLastIntDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAcntType": {
            "type": "number",
            "nullable": true
          },
          "fTradeNum": {
            "type": "string",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fViewMsg": {
            "type": "boolean",
            "nullable": true
          },
          "fMessage": {
            "type": "string",
            "nullable": true
          },
          "fDelete": {
            "type": "number",
            "nullable": true
          },
          "fIsBusi": {
            "type": "number",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fControlSystem": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fcfItemId": {
            "type": "number",
            "nullable": true
          },
          "fSubCfItemId": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fIsParallel": {
            "type": "boolean",
            "nullable": true
          },
          "fIsDiffItem": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TAccountWithRelations"
      },
      "K3TAccountPartial": {
        "title": "K3TAccountPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TAccount>, schemaOptions: { partial: true })",
        "properties": {
          "fAccountId": {
            "type": "number",
            "nullable": true
          },
          "fNumber": {
            "type": "string",
            "nullable": true
          },
          "fName": {
            "type": "string",
            "nullable": true
          },
          "fLevel": {
            "type": "number",
            "nullable": true
          },
          "fDetail": {
            "type": "boolean",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fRootId": {
            "type": "number",
            "nullable": true
          },
          "fGroupId": {
            "type": "number",
            "nullable": true
          },
          "fdc": {
            "type": "number",
            "nullable": true
          },
          "fHelperCode": {
            "type": "string",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fAdjustRate": {
            "type": "string",
            "nullable": true
          },
          "fEarnAccountId": {
            "type": "number",
            "nullable": true
          },
          "fQuantities": {
            "type": "boolean",
            "nullable": true
          },
          "fUnitGroupId": {
            "type": "number",
            "nullable": true
          },
          "fMeasureUnitId": {
            "type": "number",
            "nullable": true
          },
          "fIsCash": {
            "type": "boolean",
            "nullable": true
          },
          "fIsBank": {
            "type": "boolean",
            "nullable": true
          },
          "fJournal": {
            "type": "boolean",
            "nullable": true
          },
          "fContact": {
            "type": "boolean",
            "nullable": true
          },
          "fIsCashFlow": {
            "type": "boolean",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fAcnt": {
            "type": "boolean",
            "nullable": true
          },
          "fLoan": {
            "type": "boolean",
            "nullable": true
          },
          "fDpst": {
            "type": "boolean",
            "nullable": true
          },
          "fStatedDpst": {
            "type": "boolean",
            "nullable": true
          },
          "fInterest": {
            "type": "boolean",
            "nullable": true
          },
          "fIsAcnt": {
            "type": "boolean",
            "nullable": true
          },
          "fIsBudget": {
            "type": "boolean",
            "nullable": true
          },
          "fAcntId": {
            "type": "number",
            "nullable": true
          },
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fAcctInt": {
            "type": "boolean",
            "nullable": true
          },
          "fIntRate": {
            "type": "number",
            "nullable": true
          },
          "fLastIntDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fAcntType": {
            "type": "number",
            "nullable": true
          },
          "fTradeNum": {
            "type": "string",
            "nullable": true
          },
          "fControl": {
            "type": "number",
            "nullable": true
          },
          "fViewMsg": {
            "type": "boolean",
            "nullable": true
          },
          "fMessage": {
            "type": "string",
            "nullable": true
          },
          "fDelete": {
            "type": "number",
            "nullable": true
          },
          "fIsBusi": {
            "type": "number",
            "nullable": true
          },
          "fFullName": {
            "type": "string",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fControlSystem": {
            "type": "number",
            "nullable": true
          },
          "uuid": {
            "type": "string",
            "nullable": true
          },
          "fcfItemId": {
            "type": "number",
            "nullable": true
          },
          "fSubCfItemId": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fIsParallel": {
            "type": "boolean",
            "nullable": true
          },
          "fIsDiffItem": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TAccount>"
      },
      "K3TAccessory": {
        "title": "K3TAccessory",
        "type": "object",
        "properties": {
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fDesc": {
            "type": "string",
            "nullable": true
          },
          "fFileName": {
            "type": "string",
            "nullable": true
          },
          "fFile": {
            "type": "string",
            "nullable": true
          },
          "fFileSize": {
            "type": "number",
            "nullable": true
          },
          "fUploader": {
            "type": "number",
            "nullable": true
          },
          "fUploadTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChecker": {
            "type": "number",
            "nullable": true
          },
          "fIsPic": {
            "type": "string",
            "nullable": true
          },
          "fVersion": {
            "type": "string",
            "nullable": true
          },
          "fSaveMode": {
            "type": "number",
            "nullable": true
          },
          "fPage": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fShowFileName": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3TAccessory": {
        "title": "NewK3TAccessory",
        "type": "object",
        "description": "(tsType: K3TAccessory, schemaOptions: { title: 'NewK3TAccessory' })",
        "properties": {
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fDesc": {
            "type": "string",
            "nullable": true
          },
          "fFileName": {
            "type": "string",
            "nullable": true
          },
          "fFile": {
            "type": "string",
            "nullable": true
          },
          "fFileSize": {
            "type": "number",
            "nullable": true
          },
          "fUploader": {
            "type": "number",
            "nullable": true
          },
          "fUploadTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChecker": {
            "type": "number",
            "nullable": true
          },
          "fIsPic": {
            "type": "string",
            "nullable": true
          },
          "fVersion": {
            "type": "string",
            "nullable": true
          },
          "fSaveMode": {
            "type": "number",
            "nullable": true
          },
          "fPage": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fShowFileName": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TAccessory"
      },
      "K3TAccessoryWithRelations": {
        "title": "K3TAccessoryWithRelations",
        "type": "object",
        "description": "(tsType: K3TAccessoryWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fDesc": {
            "type": "string",
            "nullable": true
          },
          "fFileName": {
            "type": "string",
            "nullable": true
          },
          "fFile": {
            "type": "string",
            "nullable": true
          },
          "fFileSize": {
            "type": "number",
            "nullable": true
          },
          "fUploader": {
            "type": "number",
            "nullable": true
          },
          "fUploadTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChecker": {
            "type": "number",
            "nullable": true
          },
          "fIsPic": {
            "type": "string",
            "nullable": true
          },
          "fVersion": {
            "type": "string",
            "nullable": true
          },
          "fSaveMode": {
            "type": "number",
            "nullable": true
          },
          "fPage": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fShowFileName": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3TAccessoryWithRelations"
      },
      "K3TAccessoryPartial": {
        "title": "K3TAccessoryPartial",
        "type": "object",
        "description": "(tsType: Partial<K3TAccessory>, schemaOptions: { partial: true })",
        "properties": {
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fTypeId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fDesc": {
            "type": "string",
            "nullable": true
          },
          "fFileName": {
            "type": "string",
            "nullable": true
          },
          "fFile": {
            "type": "string",
            "nullable": true
          },
          "fFileSize": {
            "type": "number",
            "nullable": true
          },
          "fUploader": {
            "type": "number",
            "nullable": true
          },
          "fUploadTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChecker": {
            "type": "number",
            "nullable": true
          },
          "fIsPic": {
            "type": "string",
            "nullable": true
          },
          "fVersion": {
            "type": "string",
            "nullable": true
          },
          "fSaveMode": {
            "type": "number",
            "nullable": true
          },
          "fPage": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fShowFileName": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3TAccessory>"
      },
      "K3SeOrder": {
        "title": "K3SeOrder",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": false
          },
          "fInterId": {
            "type": "number",
            "nullable": false
          },
          "fBillNo": {
            "type": "string",
            "nullable": false
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fCustId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPayStyle": {
            "type": "string",
            "nullable": true
          },
          "fPayDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchStyle": {
            "type": "string",
            "nullable": true
          },
          "fFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSaleStyle": {
            "type": "number",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fInvoiceClosed": {
            "type": "number",
            "nullable": true
          },
          "fbClosed": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fSettleId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fDiscountType": {
            "type": "boolean",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fMultiCheckLevel1": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel2": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel3": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel4": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel5": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel6": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckDate1": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate2": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate3": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate4": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate5": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate6": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCurCheckLevel": {
            "type": "number",
            "nullable": true
          },
          "fTransitAheadTime": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fImport": {
            "type": "number",
            "nullable": true
          },
          "fOrderAffirm": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fuuid": {
            "type": "string",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fCashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fChildren": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fAreaPs": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fSysStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fChangeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChangeCauses": {
            "type": "string",
            "nullable": true
          },
          "fChangeMark": {
            "type": "number",
            "nullable": true
          },
          "fChangeUser": {
            "type": "number",
            "nullable": true
          },
          "fValidaterName": {
            "type": "string",
            "nullable": true
          },
          "fConsignee": {
            "type": "string",
            "nullable": true
          },
          "fDrpRelateTranType": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fCustAddress": {
            "type": "number",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          },
          "fxSyncOrder": {
            "type": "boolean",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckStatus": {
            "type": "string",
            "nullable": true
          },
          "fCloseUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseCauses": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "fBrNo",
          "fInterId",
          "fBillNo"
        ],
        "additionalProperties": false
      },
      "NewK3SeOrder": {
        "title": "NewK3SeOrder",
        "type": "object",
        "description": "(tsType: K3SeOrder, schemaOptions: { title: 'NewK3SeOrder' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": false
          },
          "fInterId": {
            "type": "number",
            "nullable": false
          },
          "fBillNo": {
            "type": "string",
            "nullable": false
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fCustId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPayStyle": {
            "type": "string",
            "nullable": true
          },
          "fPayDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchStyle": {
            "type": "string",
            "nullable": true
          },
          "fFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSaleStyle": {
            "type": "number",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fInvoiceClosed": {
            "type": "number",
            "nullable": true
          },
          "fbClosed": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fSettleId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fDiscountType": {
            "type": "boolean",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fMultiCheckLevel1": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel2": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel3": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel4": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel5": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel6": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckDate1": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate2": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate3": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate4": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate5": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate6": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCurCheckLevel": {
            "type": "number",
            "nullable": true
          },
          "fTransitAheadTime": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fImport": {
            "type": "number",
            "nullable": true
          },
          "fOrderAffirm": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fuuid": {
            "type": "string",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fCashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fChildren": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fAreaPs": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fSysStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fChangeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChangeCauses": {
            "type": "string",
            "nullable": true
          },
          "fChangeMark": {
            "type": "number",
            "nullable": true
          },
          "fChangeUser": {
            "type": "number",
            "nullable": true
          },
          "fValidaterName": {
            "type": "string",
            "nullable": true
          },
          "fConsignee": {
            "type": "string",
            "nullable": true
          },
          "fDrpRelateTranType": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fCustAddress": {
            "type": "number",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          },
          "fxSyncOrder": {
            "type": "boolean",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckStatus": {
            "type": "string",
            "nullable": true
          },
          "fCloseUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseCauses": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "fBrNo",
          "fInterId",
          "fBillNo"
        ],
        "additionalProperties": false,
        "x-typescript-type": "K3SeOrder"
      },
      "K3SeOrderWithRelations": {
        "title": "K3SeOrderWithRelations",
        "type": "object",
        "description": "(tsType: K3SeOrderWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": false
          },
          "fInterId": {
            "type": "number",
            "nullable": false
          },
          "fBillNo": {
            "type": "string",
            "nullable": false
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fCustId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPayStyle": {
            "type": "string",
            "nullable": true
          },
          "fPayDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchStyle": {
            "type": "string",
            "nullable": true
          },
          "fFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSaleStyle": {
            "type": "number",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fInvoiceClosed": {
            "type": "number",
            "nullable": true
          },
          "fbClosed": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fSettleId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fDiscountType": {
            "type": "boolean",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fMultiCheckLevel1": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel2": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel3": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel4": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel5": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel6": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckDate1": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate2": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate3": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate4": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate5": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate6": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCurCheckLevel": {
            "type": "number",
            "nullable": true
          },
          "fTransitAheadTime": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fImport": {
            "type": "number",
            "nullable": true
          },
          "fOrderAffirm": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fuuid": {
            "type": "string",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fCashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fChildren": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fAreaPs": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fSysStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fChangeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChangeCauses": {
            "type": "string",
            "nullable": true
          },
          "fChangeMark": {
            "type": "number",
            "nullable": true
          },
          "fChangeUser": {
            "type": "number",
            "nullable": true
          },
          "fValidaterName": {
            "type": "string",
            "nullable": true
          },
          "fConsignee": {
            "type": "string",
            "nullable": true
          },
          "fDrpRelateTranType": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fCustAddress": {
            "type": "number",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          },
          "fxSyncOrder": {
            "type": "boolean",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckStatus": {
            "type": "string",
            "nullable": true
          },
          "fCloseUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseCauses": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "fBrNo",
          "fInterId",
          "fBillNo"
        ],
        "additionalProperties": false,
        "x-typescript-type": "K3SeOrderWithRelations"
      },
      "K3SeOrderPartial": {
        "title": "K3SeOrderPartial",
        "type": "object",
        "description": "(tsType: Partial<K3SeOrder>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": false
          },
          "fInterId": {
            "type": "number",
            "nullable": false
          },
          "fBillNo": {
            "type": "string",
            "nullable": false
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fCustId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPayStyle": {
            "type": "string",
            "nullable": true
          },
          "fPayDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchStyle": {
            "type": "string",
            "nullable": true
          },
          "fFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSaleStyle": {
            "type": "number",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fInvoiceClosed": {
            "type": "number",
            "nullable": true
          },
          "fbClosed": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fSettleId": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fDiscountType": {
            "type": "boolean",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fMultiCheckLevel1": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel2": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel3": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel4": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel5": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel6": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckDate1": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate2": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate3": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate4": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate5": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate6": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCurCheckLevel": {
            "type": "number",
            "nullable": true
          },
          "fTransitAheadTime": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fImport": {
            "type": "number",
            "nullable": true
          },
          "fOrderAffirm": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fuuid": {
            "type": "string",
            "nullable": true
          },
          "fSystemType": {
            "type": "number",
            "nullable": true
          },
          "fCashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fChildren": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fAreaPs": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fSysStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fChangeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChangeCauses": {
            "type": "string",
            "nullable": true
          },
          "fChangeMark": {
            "type": "number",
            "nullable": true
          },
          "fChangeUser": {
            "type": "number",
            "nullable": true
          },
          "fValidaterName": {
            "type": "string",
            "nullable": true
          },
          "fConsignee": {
            "type": "string",
            "nullable": true
          },
          "fDrpRelateTranType": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fCustAddress": {
            "type": "number",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          },
          "fxSyncOrder": {
            "type": "boolean",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckStatus": {
            "type": "string",
            "nullable": true
          },
          "fCloseUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseCauses": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3SeOrder>"
      },
      "K3SeOrderEntry": {
        "title": "K3SeOrderEntry",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fDiscount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fDiscountAmount": {
            "type": "number",
            "nullable": true
          },
          "fInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fbCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fTranLeadTime": {
            "type": "number",
            "nullable": true
          },
          "fatpDeduct": {
            "type": "number",
            "nullable": true
          },
          "fCostObjectId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fUniDiscount": {
            "type": "number",
            "nullable": true
          },
          "fFinalAmount": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fHaveMrp": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fcess": {
            "type": "number",
            "nullable": true
          },
          "fAdviceConsignDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBomInterId": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fInForeCast": {
            "type": "number",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fAllStdAmount": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoiceBase": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmt": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fContractInterId": {
            "type": "number",
            "nullable": true
          },
          "fContractEntryId": {
            "type": "number",
            "nullable": true
          },
          "fContractBillNo": {
            "type": "string",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fmrpTrackFlag": {
            "type": "number",
            "nullable": true
          },
          "fOrderCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fOrderSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fAuxInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fEvaluated": {
            "type": "number",
            "nullable": true
          },
          "fPackUnitId": {
            "type": "number",
            "nullable": true
          },
          "fPackCount": {
            "type": "number",
            "nullable": true
          },
          "fPackType": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fGoodsDesc": {
            "type": "string",
            "nullable": true
          },
          "fAmountAfterDiscount": {
            "type": "number",
            "nullable": true
          },
          "fInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderEntryId": {
            "type": "number",
            "nullable": true
          },
          "fDiffQtyClosed": {
            "type": "number",
            "nullable": true
          },
          "fbomCategory": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomStatus": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomInterId": {
            "type": "number",
            "nullable": true
          },
          "fIsAltered": {
            "type": "number",
            "nullable": true
          },
          "fAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fEntryDisCount": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fIsAps": {
            "type": "number",
            "nullable": true
          },
          "fMeetDelivery": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0168": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0169": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0170": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0171": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseEntryCauses": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3SeOrderEntry": {
        "title": "NewK3SeOrderEntry",
        "type": "object",
        "description": "(tsType: K3SeOrderEntry, schemaOptions: { title: 'NewK3SeOrderEntry' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fDiscount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fDiscountAmount": {
            "type": "number",
            "nullable": true
          },
          "fInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fbCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fTranLeadTime": {
            "type": "number",
            "nullable": true
          },
          "fatpDeduct": {
            "type": "number",
            "nullable": true
          },
          "fCostObjectId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fUniDiscount": {
            "type": "number",
            "nullable": true
          },
          "fFinalAmount": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fHaveMrp": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fcess": {
            "type": "number",
            "nullable": true
          },
          "fAdviceConsignDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBomInterId": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fInForeCast": {
            "type": "number",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fAllStdAmount": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoiceBase": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmt": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fContractInterId": {
            "type": "number",
            "nullable": true
          },
          "fContractEntryId": {
            "type": "number",
            "nullable": true
          },
          "fContractBillNo": {
            "type": "string",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fmrpTrackFlag": {
            "type": "number",
            "nullable": true
          },
          "fOrderCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fOrderSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fAuxInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fEvaluated": {
            "type": "number",
            "nullable": true
          },
          "fPackUnitId": {
            "type": "number",
            "nullable": true
          },
          "fPackCount": {
            "type": "number",
            "nullable": true
          },
          "fPackType": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fGoodsDesc": {
            "type": "string",
            "nullable": true
          },
          "fAmountAfterDiscount": {
            "type": "number",
            "nullable": true
          },
          "fInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderEntryId": {
            "type": "number",
            "nullable": true
          },
          "fDiffQtyClosed": {
            "type": "number",
            "nullable": true
          },
          "fbomCategory": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomStatus": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomInterId": {
            "type": "number",
            "nullable": true
          },
          "fIsAltered": {
            "type": "number",
            "nullable": true
          },
          "fAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fEntryDisCount": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fIsAps": {
            "type": "number",
            "nullable": true
          },
          "fMeetDelivery": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0168": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0169": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0170": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0171": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseEntryCauses": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3SeOrderEntry"
      },
      "K3SeOrderEntryWithRelations": {
        "title": "K3SeOrderEntryWithRelations",
        "type": "object",
        "description": "(tsType: K3SeOrderEntryWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fDiscount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fDiscountAmount": {
            "type": "number",
            "nullable": true
          },
          "fInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fbCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fTranLeadTime": {
            "type": "number",
            "nullable": true
          },
          "fatpDeduct": {
            "type": "number",
            "nullable": true
          },
          "fCostObjectId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fUniDiscount": {
            "type": "number",
            "nullable": true
          },
          "fFinalAmount": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fHaveMrp": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fcess": {
            "type": "number",
            "nullable": true
          },
          "fAdviceConsignDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBomInterId": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fInForeCast": {
            "type": "number",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fAllStdAmount": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoiceBase": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmt": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fContractInterId": {
            "type": "number",
            "nullable": true
          },
          "fContractEntryId": {
            "type": "number",
            "nullable": true
          },
          "fContractBillNo": {
            "type": "string",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fmrpTrackFlag": {
            "type": "number",
            "nullable": true
          },
          "fOrderCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fOrderSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fAuxInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fEvaluated": {
            "type": "number",
            "nullable": true
          },
          "fPackUnitId": {
            "type": "number",
            "nullable": true
          },
          "fPackCount": {
            "type": "number",
            "nullable": true
          },
          "fPackType": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fGoodsDesc": {
            "type": "string",
            "nullable": true
          },
          "fAmountAfterDiscount": {
            "type": "number",
            "nullable": true
          },
          "fInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderEntryId": {
            "type": "number",
            "nullable": true
          },
          "fDiffQtyClosed": {
            "type": "number",
            "nullable": true
          },
          "fbomCategory": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomStatus": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomInterId": {
            "type": "number",
            "nullable": true
          },
          "fIsAltered": {
            "type": "number",
            "nullable": true
          },
          "fAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fEntryDisCount": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fIsAps": {
            "type": "number",
            "nullable": true
          },
          "fMeetDelivery": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0168": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0169": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0170": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0171": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseEntryCauses": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3SeOrderEntryWithRelations"
      },
      "K3SeOrderEntryPartial": {
        "title": "K3SeOrderEntryPartial",
        "type": "object",
        "description": "(tsType: Partial<K3SeOrderEntry>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fDiscount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fDiscountAmount": {
            "type": "number",
            "nullable": true
          },
          "fInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fbCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fTranLeadTime": {
            "type": "number",
            "nullable": true
          },
          "fatpDeduct": {
            "type": "number",
            "nullable": true
          },
          "fCostObjectId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fUniDiscount": {
            "type": "number",
            "nullable": true
          },
          "fFinalAmount": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fHaveMrp": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fcess": {
            "type": "number",
            "nullable": true
          },
          "fAdviceConsignDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBomInterId": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fInForeCast": {
            "type": "number",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fAllStdAmount": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoiceBase": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmt": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fContractInterId": {
            "type": "number",
            "nullable": true
          },
          "fContractEntryId": {
            "type": "number",
            "nullable": true
          },
          "fContractBillNo": {
            "type": "string",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fmrpTrackFlag": {
            "type": "number",
            "nullable": true
          },
          "fOrderCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fOrderSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fAuxInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecApplyCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fEvaluated": {
            "type": "number",
            "nullable": true
          },
          "fPackUnitId": {
            "type": "number",
            "nullable": true
          },
          "fPackCount": {
            "type": "number",
            "nullable": true
          },
          "fPackType": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fGoodsDesc": {
            "type": "string",
            "nullable": true
          },
          "fAmountAfterDiscount": {
            "type": "number",
            "nullable": true
          },
          "fInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInformCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecPurCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitInstall": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderEntryId": {
            "type": "number",
            "nullable": true
          },
          "fDiffQtyClosed": {
            "type": "number",
            "nullable": true
          },
          "fbomCategory": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomStatus": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomInterId": {
            "type": "number",
            "nullable": true
          },
          "fIsAltered": {
            "type": "number",
            "nullable": true
          },
          "fAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fEntryDisCount": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fIsAps": {
            "type": "number",
            "nullable": true
          },
          "fMeetDelivery": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0168": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0169": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0170": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfS0171": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseEntryCauses": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3SeOrderEntry>"
      },
      "K3QSubcontractOrderOpen": {
        "title": "K3QSubcontractOrderOpen",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QSubcontractOrderOpen": {
        "title": "NewK3QSubcontractOrderOpen",
        "type": "object",
        "description": "(tsType: K3QSubcontractOrderOpen, schemaOptions: { title: 'NewK3QSubcontractOrderOpen' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QSubcontractOrderOpen"
      },
      "K3QSubcontractOrderOpenWithRelations": {
        "title": "K3QSubcontractOrderOpenWithRelations",
        "type": "object",
        "description": "(tsType: K3QSubcontractOrderOpenWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QSubcontractOrderOpenWithRelations"
      },
      "K3QSubcontractOrderOpenPartial": {
        "title": "K3QSubcontractOrderOpenPartial",
        "type": "object",
        "description": "(tsType: Partial<K3QSubcontractOrderOpen>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QSubcontractOrderOpen>"
      },
      "K3QStockBill_5": {
        "title": "K3QStockBill_5",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QStockBill_5": {
        "title": "NewK3QStockBill_5",
        "type": "object",
        "description": "(tsType: K3QStockBill_5, schemaOptions: { title: 'NewK3QStockBill_5' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_5"
      },
      "K3QStockBill_5WithRelations": {
        "title": "K3QStockBill_5WithRelations",
        "type": "object",
        "description": "(tsType: K3QStockBill_5WithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_5WithRelations"
      },
      "K3QStockBill_5Partial": {
        "title": "K3QStockBill_5Partial",
        "type": "object",
        "description": "(tsType: Partial<K3QStockBill_5>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QStockBill_5>"
      },
      "K3QStockBill_29": {
        "title": "K3QStockBill_29",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QStockBill_29": {
        "title": "NewK3QStockBill_29",
        "type": "object",
        "description": "(tsType: K3QStockBill_29, schemaOptions: { title: 'NewK3QStockBill_29' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_29"
      },
      "K3QStockBill_29WithRelations": {
        "title": "K3QStockBill_29WithRelations",
        "type": "object",
        "description": "(tsType: K3QStockBill_29WithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_29WithRelations"
      },
      "K3QStockBill_29Partial": {
        "title": "K3QStockBill_29Partial",
        "type": "object",
        "description": "(tsType: Partial<K3QStockBill_29>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QStockBill_29>"
      },
      "K3QStockBill_28": {
        "title": "K3QStockBill_28",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QStockBill_28": {
        "title": "NewK3QStockBill_28",
        "type": "object",
        "description": "(tsType: K3QStockBill_28, schemaOptions: { title: 'NewK3QStockBill_28' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_28"
      },
      "K3QStockBill_28WithRelations": {
        "title": "K3QStockBill_28WithRelations",
        "type": "object",
        "description": "(tsType: K3QStockBill_28WithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_28WithRelations"
      },
      "K3QStockBill_28Partial": {
        "title": "K3QStockBill_28Partial",
        "type": "object",
        "description": "(tsType: Partial<K3QStockBill_28>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QStockBill_28>"
      },
      "K3QStockBill_24": {
        "title": "K3QStockBill_24",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QStockBill_24": {
        "title": "NewK3QStockBill_24",
        "type": "object",
        "description": "(tsType: K3QStockBill_24, schemaOptions: { title: 'NewK3QStockBill_24' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_24"
      },
      "K3QStockBill_24WithRelations": {
        "title": "K3QStockBill_24WithRelations",
        "type": "object",
        "description": "(tsType: K3QStockBill_24WithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_24WithRelations"
      },
      "K3QStockBill_24Partial": {
        "title": "K3QStockBill_24Partial",
        "type": "object",
        "description": "(tsType: Partial<K3QStockBill_24>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QStockBill_24>"
      },
      "K3QStockBill_21": {
        "title": "K3QStockBill_21",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QStockBill_21": {
        "title": "NewK3QStockBill_21",
        "type": "object",
        "description": "(tsType: K3QStockBill_21, schemaOptions: { title: 'NewK3QStockBill_21' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_21"
      },
      "K3QStockBill_21WithRelations": {
        "title": "K3QStockBill_21WithRelations",
        "type": "object",
        "description": "(tsType: K3QStockBill_21WithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_21WithRelations"
      },
      "K3QStockBill_21Partial": {
        "title": "K3QStockBill_21Partial",
        "type": "object",
        "description": "(tsType: Partial<K3QStockBill_21>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QStockBill_21>"
      },
      "K3QStockBill_2": {
        "title": "K3QStockBill_2",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QStockBill_2": {
        "title": "NewK3QStockBill_2",
        "type": "object",
        "description": "(tsType: K3QStockBill_2, schemaOptions: { title: 'NewK3QStockBill_2' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_2"
      },
      "K3QStockBill_2WithRelations": {
        "title": "K3QStockBill_2WithRelations",
        "type": "object",
        "description": "(tsType: K3QStockBill_2WithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_2WithRelations"
      },
      "K3QStockBill_2Partial": {
        "title": "K3QStockBill_2Partial",
        "type": "object",
        "description": "(tsType: Partial<K3QStockBill_2>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QStockBill_2>"
      },
      "K3QStockBill_10": {
        "title": "K3QStockBill_10",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QStockBill_10": {
        "title": "NewK3QStockBill_10",
        "type": "object",
        "description": "(tsType: K3QStockBill_10, schemaOptions: { title: 'NewK3QStockBill_10' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_10"
      },
      "K3QStockBill_10WithRelations": {
        "title": "K3QStockBill_10WithRelations",
        "type": "object",
        "description": "(tsType: K3QStockBill_10WithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_10WithRelations"
      },
      "K3QStockBill_10Partial": {
        "title": "K3QStockBill_10Partial",
        "type": "object",
        "description": "(tsType: Partial<K3QStockBill_10>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QStockBill_10>"
      },
      "K3QStockBill_1": {
        "title": "K3QStockBill_1",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QStockBill_1": {
        "title": "NewK3QStockBill_1",
        "type": "object",
        "description": "(tsType: K3QStockBill_1, schemaOptions: { title: 'NewK3QStockBill_1' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_1"
      },
      "K3QStockBill_1WithRelations": {
        "title": "K3QStockBill_1WithRelations",
        "type": "object",
        "description": "(tsType: K3QStockBill_1WithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QStockBill_1WithRelations"
      },
      "K3QStockBill_1Partial": {
        "title": "K3QStockBill_1Partial",
        "type": "object",
        "description": "(tsType: Partial<K3QStockBill_1>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "interId": {
            "type": "number",
            "nullable": true
          },
          "entryId": {
            "type": "number",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "billDate": {
            "type": "string",
            "nullable": true
          },
          "billDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "price": {
            "type": "number",
            "nullable": true
          },
          "amount": {
            "type": "number",
            "nullable": true
          },
          "stockName": {
            "type": "string",
            "nullable": true
          },
          "stockPlaceName": {
            "type": "string",
            "nullable": true
          },
          "note": {
            "type": "string",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "orderQty": {
            "type": "number",
            "nullable": true
          },
          "commitQty": {
            "type": "number",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "invQty": {
            "type": "number",
            "nullable": true
          },
          "supplyName": {
            "type": "string",
            "nullable": true
          },
          "tranType": {
            "type": "number",
            "nullable": true
          },
          "statusCode": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QStockBill_1>"
      },
      "K3QSalesOrderOpen": {
        "title": "K3QSalesOrderOpen",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QSalesOrderOpen": {
        "title": "NewK3QSalesOrderOpen",
        "type": "object",
        "description": "(tsType: K3QSalesOrderOpen, schemaOptions: { title: 'NewK3QSalesOrderOpen' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QSalesOrderOpen"
      },
      "K3QSalesOrderOpenWithRelations": {
        "title": "K3QSalesOrderOpenWithRelations",
        "type": "object",
        "description": "(tsType: K3QSalesOrderOpenWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QSalesOrderOpenWithRelations"
      },
      "K3QSalesOrderOpenPartial": {
        "title": "K3QSalesOrderOpenPartial",
        "type": "object",
        "description": "(tsType: Partial<K3QSalesOrderOpen>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QSalesOrderOpen>"
      },
      "K3QPurchaseOrderOpen": {
        "title": "K3QPurchaseOrderOpen",
        "type": "object",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3QPurchaseOrderOpen": {
        "title": "NewK3QPurchaseOrderOpen",
        "type": "object",
        "description": "(tsType: K3QPurchaseOrderOpen, schemaOptions: { title: 'NewK3QPurchaseOrderOpen' })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QPurchaseOrderOpen"
      },
      "K3QPurchaseOrderOpenWithRelations": {
        "title": "K3QPurchaseOrderOpenWithRelations",
        "type": "object",
        "description": "(tsType: K3QPurchaseOrderOpenWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3QPurchaseOrderOpenWithRelations"
      },
      "K3QPurchaseOrderOpenPartial": {
        "title": "K3QPurchaseOrderOpenPartial",
        "type": "object",
        "description": "(tsType: Partial<K3QPurchaseOrderOpen>, schemaOptions: { partial: true })",
        "properties": {
          "rowId": {
            "type": "string",
            "nullable": true
          },
          "currencyName": {
            "type": "string",
            "nullable": true
          },
          "departmentName": {
            "type": "string",
            "nullable": true
          },
          "itemNumber": {
            "type": "string",
            "nullable": true
          },
          "itemName": {
            "type": "string",
            "nullable": true
          },
          "billNo": {
            "type": "string",
            "nullable": true
          },
          "unitName": {
            "type": "string",
            "nullable": true
          },
          "partnerName": {
            "type": "string",
            "nullable": true
          },
          "closeFlag": {
            "type": "string",
            "nullable": true
          },
          "model": {
            "type": "string",
            "nullable": true
          },
          "planCategory": {
            "type": "string",
            "nullable": true
          },
          "amountWithTax": {
            "type": "number",
            "nullable": true
          },
          "deliveryDate": {
            "type": "string",
            "nullable": true
          },
          "orderDate": {
            "type": "string",
            "nullable": true
          },
          "auditFlag": {
            "type": "string",
            "nullable": true
          },
          "taxPrice": {
            "type": "number",
            "nullable": true
          },
          "qty": {
            "type": "number",
            "nullable": true
          },
          "salespersonName": {
            "type": "string",
            "nullable": true
          },
          "pendingQty": {
            "type": "number",
            "nullable": true
          },
          "orderDateKey": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "entrySort": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3QPurchaseOrderOpen>"
      },
      "K3PoOrder": {
        "title": "K3PoOrder",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fpoStyle": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel1": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel2": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel3": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel4": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel5": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel6": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckDate1": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate2": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate3": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate4": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate5": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate6": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCurCheckLevel": {
            "type": "number",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fOrderAffirm": {
            "type": "number",
            "nullable": true
          },
          "fCashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSettleId": {
            "type": "number",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fChildren": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fAreaPs": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fTotalCostFor": {
            "type": "number",
            "nullable": true
          },
          "flastModyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fSysStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fChangeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChangeCauses": {
            "type": "string",
            "nullable": true
          },
          "fChangeMark": {
            "type": "number",
            "nullable": true
          },
          "fChangeUser": {
            "type": "number",
            "nullable": true
          },
          "fValidaterName": {
            "type": "string",
            "nullable": true
          },
          "fConsignee": {
            "type": "string",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryPlace": {
            "type": "string",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fpoMode": {
            "type": "number",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fLastAlterBillNo": {
            "type": "string",
            "nullable": true
          },
          "fCloseUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseCauses": {
            "type": "string",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3PoOrder": {
        "title": "NewK3PoOrder",
        "type": "object",
        "description": "(tsType: K3PoOrder, schemaOptions: { title: 'NewK3PoOrder' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fpoStyle": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel1": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel2": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel3": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel4": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel5": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel6": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckDate1": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate2": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate3": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate4": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate5": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate6": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCurCheckLevel": {
            "type": "number",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fOrderAffirm": {
            "type": "number",
            "nullable": true
          },
          "fCashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSettleId": {
            "type": "number",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fChildren": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fAreaPs": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fTotalCostFor": {
            "type": "number",
            "nullable": true
          },
          "flastModyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fSysStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fChangeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChangeCauses": {
            "type": "string",
            "nullable": true
          },
          "fChangeMark": {
            "type": "number",
            "nullable": true
          },
          "fChangeUser": {
            "type": "number",
            "nullable": true
          },
          "fValidaterName": {
            "type": "string",
            "nullable": true
          },
          "fConsignee": {
            "type": "string",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryPlace": {
            "type": "string",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fpoMode": {
            "type": "number",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fLastAlterBillNo": {
            "type": "string",
            "nullable": true
          },
          "fCloseUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseCauses": {
            "type": "string",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3PoOrder"
      },
      "K3PoOrderWithRelations": {
        "title": "K3PoOrderWithRelations",
        "type": "object",
        "description": "(tsType: K3PoOrderWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fpoStyle": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel1": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel2": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel3": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel4": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel5": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel6": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckDate1": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate2": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate3": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate4": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate5": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate6": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCurCheckLevel": {
            "type": "number",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fOrderAffirm": {
            "type": "number",
            "nullable": true
          },
          "fCashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSettleId": {
            "type": "number",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fChildren": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fAreaPs": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fTotalCostFor": {
            "type": "number",
            "nullable": true
          },
          "flastModyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fSysStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fChangeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChangeCauses": {
            "type": "string",
            "nullable": true
          },
          "fChangeMark": {
            "type": "number",
            "nullable": true
          },
          "fChangeUser": {
            "type": "number",
            "nullable": true
          },
          "fValidaterName": {
            "type": "string",
            "nullable": true
          },
          "fConsignee": {
            "type": "string",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryPlace": {
            "type": "string",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fpoMode": {
            "type": "number",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fLastAlterBillNo": {
            "type": "string",
            "nullable": true
          },
          "fCloseUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseCauses": {
            "type": "string",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3PoOrderWithRelations"
      },
      "K3PoOrderPartial": {
        "title": "K3PoOrderPartial",
        "type": "object",
        "description": "(tsType: Partial<K3PoOrder>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fpoStyle": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel1": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel2": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel3": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel4": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel5": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckLevel6": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckDate1": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate2": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate3": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate4": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate5": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fMultiCheckDate6": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCurCheckLevel": {
            "type": "number",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fOrderAffirm": {
            "type": "number",
            "nullable": true
          },
          "fCashDiscount": {
            "type": "string",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSettleId": {
            "type": "number",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fChildren": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fAreaPs": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fTotalCostFor": {
            "type": "number",
            "nullable": true
          },
          "flastModyDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fSysStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fChangeDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fChangeCauses": {
            "type": "string",
            "nullable": true
          },
          "fChangeMark": {
            "type": "number",
            "nullable": true
          },
          "fChangeUser": {
            "type": "number",
            "nullable": true
          },
          "fValidaterName": {
            "type": "string",
            "nullable": true
          },
          "fConsignee": {
            "type": "string",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryPlace": {
            "type": "string",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fpoMode": {
            "type": "number",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fLastAlterBillNo": {
            "type": "string",
            "nullable": true
          },
          "fCloseUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseCauses": {
            "type": "string",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3PoOrder>"
      },
      "K3PoOrderEntry": {
        "title": "K3PoOrderEntry",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fCess": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoiceBase": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fContractInterId": {
            "type": "number",
            "nullable": true
          },
          "fContractEntryId": {
            "type": "number",
            "nullable": true
          },
          "fContractBillNo": {
            "type": "string",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fsProducingAreaId": {
            "type": "number",
            "nullable": true
          },
          "fAmtDiscount": {
            "type": "number",
            "nullable": true
          },
          "fCheckAmount": {
            "type": "number",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fDescount": {
            "type": "number",
            "nullable": true
          },
          "fSupConfirm": {
            "type": "string",
            "nullable": true
          },
          "fSupConDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConQty": {
            "type": "number",
            "nullable": true
          },
          "fSupConMem": {
            "type": "string",
            "nullable": true
          },
          "fSupConFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConfirmor": {
            "type": "number",
            "nullable": true
          },
          "fQualityRptBillId": {
            "type": "number",
            "nullable": true
          },
          "fLockByAlter": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fSecDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fRejectRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fLockBySupplier": {
            "type": "number",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fprInterId": {
            "type": "number",
            "nullable": true
          },
          "fprEntryId": {
            "type": "number",
            "nullable": true
          },
          "fAuxReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fCheckMethod": {
            "type": "number",
            "nullable": true
          },
          "fIsCheck": {
            "type": "number",
            "nullable": true
          },
          "fAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fEntryDisCount": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fPayReqPayAmountFor": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseEntryCauses": {
            "type": "string",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0271": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0272": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0273": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0274": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0275": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0276": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0277": {
            "type": "string",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0279": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0280": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0281": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0282": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0283": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0284": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0285": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0286": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0287": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3PoOrderEntry": {
        "title": "NewK3PoOrderEntry",
        "type": "object",
        "description": "(tsType: K3PoOrderEntry, schemaOptions: { title: 'NewK3PoOrderEntry' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fCess": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoiceBase": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fContractInterId": {
            "type": "number",
            "nullable": true
          },
          "fContractEntryId": {
            "type": "number",
            "nullable": true
          },
          "fContractBillNo": {
            "type": "string",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fsProducingAreaId": {
            "type": "number",
            "nullable": true
          },
          "fAmtDiscount": {
            "type": "number",
            "nullable": true
          },
          "fCheckAmount": {
            "type": "number",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fDescount": {
            "type": "number",
            "nullable": true
          },
          "fSupConfirm": {
            "type": "string",
            "nullable": true
          },
          "fSupConDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConQty": {
            "type": "number",
            "nullable": true
          },
          "fSupConMem": {
            "type": "string",
            "nullable": true
          },
          "fSupConFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConfirmor": {
            "type": "number",
            "nullable": true
          },
          "fQualityRptBillId": {
            "type": "number",
            "nullable": true
          },
          "fLockByAlter": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fSecDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fRejectRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fLockBySupplier": {
            "type": "number",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fprInterId": {
            "type": "number",
            "nullable": true
          },
          "fprEntryId": {
            "type": "number",
            "nullable": true
          },
          "fAuxReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fCheckMethod": {
            "type": "number",
            "nullable": true
          },
          "fIsCheck": {
            "type": "number",
            "nullable": true
          },
          "fAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fEntryDisCount": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fPayReqPayAmountFor": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseEntryCauses": {
            "type": "string",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0271": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0272": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0273": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0274": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0275": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0276": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0277": {
            "type": "string",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0279": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0280": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0281": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0282": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0283": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0284": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0285": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0286": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0287": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3PoOrderEntry"
      },
      "K3PoOrderEntryWithRelations": {
        "title": "K3PoOrderEntryWithRelations",
        "type": "object",
        "description": "(tsType: K3PoOrderEntryWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fCess": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoiceBase": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fContractInterId": {
            "type": "number",
            "nullable": true
          },
          "fContractEntryId": {
            "type": "number",
            "nullable": true
          },
          "fContractBillNo": {
            "type": "string",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fsProducingAreaId": {
            "type": "number",
            "nullable": true
          },
          "fAmtDiscount": {
            "type": "number",
            "nullable": true
          },
          "fCheckAmount": {
            "type": "number",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fDescount": {
            "type": "number",
            "nullable": true
          },
          "fSupConfirm": {
            "type": "string",
            "nullable": true
          },
          "fSupConDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConQty": {
            "type": "number",
            "nullable": true
          },
          "fSupConMem": {
            "type": "string",
            "nullable": true
          },
          "fSupConFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConfirmor": {
            "type": "number",
            "nullable": true
          },
          "fQualityRptBillId": {
            "type": "number",
            "nullable": true
          },
          "fLockByAlter": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fSecDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fRejectRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fLockBySupplier": {
            "type": "number",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fprInterId": {
            "type": "number",
            "nullable": true
          },
          "fprEntryId": {
            "type": "number",
            "nullable": true
          },
          "fAuxReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fCheckMethod": {
            "type": "number",
            "nullable": true
          },
          "fIsCheck": {
            "type": "number",
            "nullable": true
          },
          "fAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fEntryDisCount": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fPayReqPayAmountFor": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseEntryCauses": {
            "type": "string",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0271": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0272": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0273": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0274": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0275": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0276": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0277": {
            "type": "string",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0279": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0280": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0281": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0282": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0283": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0284": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0285": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0286": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0287": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3PoOrderEntryWithRelations"
      },
      "K3PoOrderEntryPartial": {
        "title": "K3PoOrderEntryPartial",
        "type": "object",
        "description": "(tsType: Partial<K3PoOrderEntry>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTax": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fCess": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoiceBase": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fContractInterId": {
            "type": "number",
            "nullable": true
          },
          "fContractEntryId": {
            "type": "number",
            "nullable": true
          },
          "fContractBillNo": {
            "type": "string",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fsProducingAreaId": {
            "type": "number",
            "nullable": true
          },
          "fAmtDiscount": {
            "type": "number",
            "nullable": true
          },
          "fCheckAmount": {
            "type": "number",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountCommit": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fSecInvoiceQty": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fDescount": {
            "type": "number",
            "nullable": true
          },
          "fSupConfirm": {
            "type": "string",
            "nullable": true
          },
          "fSupConDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConQty": {
            "type": "number",
            "nullable": true
          },
          "fSupConMem": {
            "type": "string",
            "nullable": true
          },
          "fSupConFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConfirmor": {
            "type": "number",
            "nullable": true
          },
          "fQualityRptBillId": {
            "type": "number",
            "nullable": true
          },
          "fLockByAlter": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fSecDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fRejectRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fLockBySupplier": {
            "type": "number",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fprInterId": {
            "type": "number",
            "nullable": true
          },
          "fprEntryId": {
            "type": "number",
            "nullable": true
          },
          "fAuxReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fCheckMethod": {
            "type": "number",
            "nullable": true
          },
          "fIsCheck": {
            "type": "number",
            "nullable": true
          },
          "fAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmountExceptDisCount": {
            "type": "number",
            "nullable": true
          },
          "fEntryDisCount": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fPayReqPayAmountFor": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryUser": {
            "type": "number",
            "nullable": true
          },
          "fCloseEntryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCloseEntryCauses": {
            "type": "string",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0271": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0272": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0273": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0274": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0275": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0276": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0277": {
            "type": "string",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0279": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0280": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0281": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0282": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0283": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0284": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0285": {
            "type": "string",
            "nullable": true
          },
          "fEntrySelfP0286": {
            "type": "number",
            "nullable": true
          },
          "fEntrySelfP0287": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3PoOrderEntry>"
      },
      "K3Icbom": {
        "title": "K3Icbom",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fbomNumber": {
            "type": "string",
            "nullable": true
          },
          "fImpMode": {
            "type": "number",
            "nullable": true
          },
          "fUseStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersion": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fYield": {
            "type": "number",
            "nullable": true
          },
          "fCheckId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fOperatorId": {
            "type": "number",
            "nullable": true
          },
          "fEnterTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fRoutingId": {
            "type": "number",
            "nullable": true
          },
          "fBomType": {
            "type": "number",
            "nullable": true
          },
          "fCustId": {
            "type": "number",
            "nullable": true
          },
          "fCustItemId": {
            "type": "number",
            "nullable": true
          },
          "fAccessories": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fauxqty": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fAudDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEcnInterId": {
            "type": "number",
            "nullable": true
          },
          "fBeenChecked": {
            "type": "string",
            "nullable": true
          },
          "fForbid": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fpdmImportDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fbomSkip": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fUserId": {
            "type": "number",
            "nullable": true
          },
          "fUseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckStatus": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3Icbom": {
        "title": "NewK3Icbom",
        "type": "object",
        "description": "(tsType: K3Icbom, schemaOptions: { title: 'NewK3Icbom' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fbomNumber": {
            "type": "string",
            "nullable": true
          },
          "fImpMode": {
            "type": "number",
            "nullable": true
          },
          "fUseStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersion": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fYield": {
            "type": "number",
            "nullable": true
          },
          "fCheckId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fOperatorId": {
            "type": "number",
            "nullable": true
          },
          "fEnterTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fRoutingId": {
            "type": "number",
            "nullable": true
          },
          "fBomType": {
            "type": "number",
            "nullable": true
          },
          "fCustId": {
            "type": "number",
            "nullable": true
          },
          "fCustItemId": {
            "type": "number",
            "nullable": true
          },
          "fAccessories": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fauxqty": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fAudDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEcnInterId": {
            "type": "number",
            "nullable": true
          },
          "fBeenChecked": {
            "type": "string",
            "nullable": true
          },
          "fForbid": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fpdmImportDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fbomSkip": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fUserId": {
            "type": "number",
            "nullable": true
          },
          "fUseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckStatus": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3Icbom"
      },
      "K3IcbomWithRelations": {
        "title": "K3IcbomWithRelations",
        "type": "object",
        "description": "(tsType: K3IcbomWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fbomNumber": {
            "type": "string",
            "nullable": true
          },
          "fImpMode": {
            "type": "number",
            "nullable": true
          },
          "fUseStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersion": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fYield": {
            "type": "number",
            "nullable": true
          },
          "fCheckId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fOperatorId": {
            "type": "number",
            "nullable": true
          },
          "fEnterTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fRoutingId": {
            "type": "number",
            "nullable": true
          },
          "fBomType": {
            "type": "number",
            "nullable": true
          },
          "fCustId": {
            "type": "number",
            "nullable": true
          },
          "fCustItemId": {
            "type": "number",
            "nullable": true
          },
          "fAccessories": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fauxqty": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fAudDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEcnInterId": {
            "type": "number",
            "nullable": true
          },
          "fBeenChecked": {
            "type": "string",
            "nullable": true
          },
          "fForbid": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fpdmImportDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fbomSkip": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fUserId": {
            "type": "number",
            "nullable": true
          },
          "fUseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckStatus": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcbomWithRelations"
      },
      "K3IcbomPartial": {
        "title": "K3IcbomPartial",
        "type": "object",
        "description": "(tsType: Partial<K3Icbom>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fbomNumber": {
            "type": "string",
            "nullable": true
          },
          "fImpMode": {
            "type": "number",
            "nullable": true
          },
          "fUseStatus": {
            "type": "number",
            "nullable": true
          },
          "fVersion": {
            "type": "string",
            "nullable": true
          },
          "fParentId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fYield": {
            "type": "number",
            "nullable": true
          },
          "fCheckId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fOperatorId": {
            "type": "number",
            "nullable": true
          },
          "fEnterTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fRoutingId": {
            "type": "number",
            "nullable": true
          },
          "fBomType": {
            "type": "number",
            "nullable": true
          },
          "fCustId": {
            "type": "number",
            "nullable": true
          },
          "fCustItemId": {
            "type": "number",
            "nullable": true
          },
          "fAccessories": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fauxqty": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fAudDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEcnInterId": {
            "type": "number",
            "nullable": true
          },
          "fBeenChecked": {
            "type": "string",
            "nullable": true
          },
          "fForbid": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fpdmImportDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fbomSkip": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fUserId": {
            "type": "number",
            "nullable": true
          },
          "fUseDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fMultiCheckStatus": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3Icbom>"
      },
      "K3IcbomChild": {
        "title": "K3IcbomChild",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fScrap": {
            "type": "number",
            "nullable": true
          },
          "fOperSn": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fMachinePos": {
            "type": "string",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fMaterielType": {
            "type": "number",
            "nullable": true
          },
          "fMarshalType": {
            "type": "number",
            "nullable": true
          },
          "fPercent": {
            "type": "number",
            "nullable": true
          },
          "fBeginDay": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndDay": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fOffSetDay": {
            "type": "number",
            "nullable": true
          },
          "fBackFlush": {
            "type": "number",
            "nullable": true
          },
          "fStockId": {
            "type": "number",
            "nullable": true
          },
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fSupply": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fpdmImportDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPositionNo": {
            "type": "string",
            "nullable": true
          },
          "fItemSize": {
            "type": "string",
            "nullable": true
          },
          "fItemSuite": {
            "type": "string",
            "nullable": true
          },
          "fNote1": {
            "type": "string",
            "nullable": true
          },
          "fNote2": {
            "type": "string",
            "nullable": true
          },
          "fNote3": {
            "type": "string",
            "nullable": true
          },
          "fHasChar": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "string",
            "nullable": true
          },
          "fEntryKey": {
            "type": "number",
            "nullable": true
          },
          "fCostPercentage": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3IcbomChild": {
        "title": "NewK3IcbomChild",
        "type": "object",
        "description": "(tsType: K3IcbomChild, schemaOptions: { title: 'NewK3IcbomChild' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fScrap": {
            "type": "number",
            "nullable": true
          },
          "fOperSn": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fMachinePos": {
            "type": "string",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fMaterielType": {
            "type": "number",
            "nullable": true
          },
          "fMarshalType": {
            "type": "number",
            "nullable": true
          },
          "fPercent": {
            "type": "number",
            "nullable": true
          },
          "fBeginDay": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndDay": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fOffSetDay": {
            "type": "number",
            "nullable": true
          },
          "fBackFlush": {
            "type": "number",
            "nullable": true
          },
          "fStockId": {
            "type": "number",
            "nullable": true
          },
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fSupply": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fpdmImportDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPositionNo": {
            "type": "string",
            "nullable": true
          },
          "fItemSize": {
            "type": "string",
            "nullable": true
          },
          "fItemSuite": {
            "type": "string",
            "nullable": true
          },
          "fNote1": {
            "type": "string",
            "nullable": true
          },
          "fNote2": {
            "type": "string",
            "nullable": true
          },
          "fNote3": {
            "type": "string",
            "nullable": true
          },
          "fHasChar": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "string",
            "nullable": true
          },
          "fEntryKey": {
            "type": "number",
            "nullable": true
          },
          "fCostPercentage": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcbomChild"
      },
      "K3IcbomChildWithRelations": {
        "title": "K3IcbomChildWithRelations",
        "type": "object",
        "description": "(tsType: K3IcbomChildWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fScrap": {
            "type": "number",
            "nullable": true
          },
          "fOperSn": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fMachinePos": {
            "type": "string",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fMaterielType": {
            "type": "number",
            "nullable": true
          },
          "fMarshalType": {
            "type": "number",
            "nullable": true
          },
          "fPercent": {
            "type": "number",
            "nullable": true
          },
          "fBeginDay": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndDay": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fOffSetDay": {
            "type": "number",
            "nullable": true
          },
          "fBackFlush": {
            "type": "number",
            "nullable": true
          },
          "fStockId": {
            "type": "number",
            "nullable": true
          },
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fSupply": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fpdmImportDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPositionNo": {
            "type": "string",
            "nullable": true
          },
          "fItemSize": {
            "type": "string",
            "nullable": true
          },
          "fItemSuite": {
            "type": "string",
            "nullable": true
          },
          "fNote1": {
            "type": "string",
            "nullable": true
          },
          "fNote2": {
            "type": "string",
            "nullable": true
          },
          "fNote3": {
            "type": "string",
            "nullable": true
          },
          "fHasChar": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "string",
            "nullable": true
          },
          "fEntryKey": {
            "type": "number",
            "nullable": true
          },
          "fCostPercentage": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcbomChildWithRelations"
      },
      "K3IcbomChildPartial": {
        "title": "K3IcbomChildPartial",
        "type": "object",
        "description": "(tsType: Partial<K3IcbomChild>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fScrap": {
            "type": "number",
            "nullable": true
          },
          "fOperSn": {
            "type": "number",
            "nullable": true
          },
          "fOperId": {
            "type": "number",
            "nullable": true
          },
          "fMachinePos": {
            "type": "string",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fMaterielType": {
            "type": "number",
            "nullable": true
          },
          "fMarshalType": {
            "type": "number",
            "nullable": true
          },
          "fPercent": {
            "type": "number",
            "nullable": true
          },
          "fBeginDay": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndDay": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fOffSetDay": {
            "type": "number",
            "nullable": true
          },
          "fBackFlush": {
            "type": "number",
            "nullable": true
          },
          "fStockId": {
            "type": "number",
            "nullable": true
          },
          "fspid": {
            "type": "number",
            "nullable": true
          },
          "fSupply": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fpdmImportDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPositionNo": {
            "type": "string",
            "nullable": true
          },
          "fItemSize": {
            "type": "string",
            "nullable": true
          },
          "fItemSuite": {
            "type": "string",
            "nullable": true
          },
          "fNote1": {
            "type": "string",
            "nullable": true
          },
          "fNote2": {
            "type": "string",
            "nullable": true
          },
          "fNote3": {
            "type": "string",
            "nullable": true
          },
          "fHasChar": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "string",
            "nullable": true
          },
          "fEntryKey": {
            "type": "number",
            "nullable": true
          },
          "fCostPercentage": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3IcbomChild>"
      },
      "K3IcSubContract": {
        "title": "K3IcSubContract",
        "type": "object",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fInvStyle": {
            "type": "number",
            "nullable": true
          },
          "fSettleStyle": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fDepartment": {
            "type": "number",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fEmployee": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fSummary": {
            "type": "string",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "number",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderRefuse": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fClosedDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryPlace": {
            "type": "number",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fCloserId": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fExeStatus": {
            "type": "string",
            "nullable": true
          },
          "fConcernStatus": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3IcSubContract": {
        "title": "NewK3IcSubContract",
        "type": "object",
        "description": "(tsType: K3IcSubContract, schemaOptions: { title: 'NewK3IcSubContract' })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fInvStyle": {
            "type": "number",
            "nullable": true
          },
          "fSettleStyle": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fDepartment": {
            "type": "number",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fEmployee": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fSummary": {
            "type": "string",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "number",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderRefuse": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fClosedDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryPlace": {
            "type": "number",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fCloserId": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fExeStatus": {
            "type": "string",
            "nullable": true
          },
          "fConcernStatus": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcSubContract"
      },
      "K3IcSubContractWithRelations": {
        "title": "K3IcSubContractWithRelations",
        "type": "object",
        "description": "(tsType: K3IcSubContractWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fInvStyle": {
            "type": "number",
            "nullable": true
          },
          "fSettleStyle": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fDepartment": {
            "type": "number",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fEmployee": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fSummary": {
            "type": "string",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "number",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderRefuse": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fClosedDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryPlace": {
            "type": "number",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fCloserId": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fExeStatus": {
            "type": "string",
            "nullable": true
          },
          "fConcernStatus": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcSubContractWithRelations"
      },
      "K3IcSubContractPartial": {
        "title": "K3IcSubContractPartial",
        "type": "object",
        "description": "(tsType: Partial<K3IcSubContract>, schemaOptions: { partial: true })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fInvStyle": {
            "type": "number",
            "nullable": true
          },
          "fSettleStyle": {
            "type": "number",
            "nullable": true
          },
          "fCurrencyId": {
            "type": "number",
            "nullable": true
          },
          "fDepartment": {
            "type": "number",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fExchangeRate": {
            "type": "number",
            "nullable": true
          },
          "fEmployee": {
            "type": "number",
            "nullable": true
          },
          "fMangerId": {
            "type": "number",
            "nullable": true
          },
          "fSummary": {
            "type": "string",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "number",
            "nullable": true
          },
          "fClosed": {
            "type": "number",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fTranStatus": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fRelateBrId": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fpoOrdBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderRefuse": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fExchangeRateType": {
            "type": "number",
            "nullable": true
          },
          "fClosedDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fPlanCategory": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryPlace": {
            "type": "number",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fCloserId": {
            "type": "number",
            "nullable": true
          },
          "fVersionNo": {
            "type": "string",
            "nullable": true
          },
          "fExeStatus": {
            "type": "string",
            "nullable": true
          },
          "fConcernStatus": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3IcSubContract>"
      },
      "K3IcSubContractEntry": {
        "title": "K3IcSubContractEntry",
        "type": "object",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fIndex": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fDiscountRate": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fAmtDiscount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fStdAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fPayShipDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fbomInterId": {
            "type": "number",
            "nullable": true
          },
          "fInHighLimit": {
            "type": "number",
            "nullable": true
          },
          "fInLowLimit": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fEntryIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fInterIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fBillNoSrc": {
            "type": "string",
            "nullable": true
          },
          "fInterIdOrderSrc": {
            "type": "number",
            "nullable": true
          },
          "fEntryIdOrderSrc": {
            "type": "number",
            "nullable": true
          },
          "fOrderNo": {
            "type": "string",
            "nullable": true
          },
          "fInHighLimitQty": {
            "type": "number",
            "nullable": true
          },
          "fInLowLimitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fMrpTrackFlag": {
            "type": "number",
            "nullable": true
          },
          "fporInterId": {
            "type": "number",
            "nullable": true
          },
          "fporNumber": {
            "type": "string",
            "nullable": true
          },
          "fbCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fSecBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fbomCategory": {
            "type": "number",
            "nullable": true
          },
          "fSupConfirm": {
            "type": "string",
            "nullable": true
          },
          "fSupConDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConQty": {
            "type": "number",
            "nullable": true
          },
          "fSupConMem": {
            "type": "string",
            "nullable": true
          },
          "fSupConFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConfirmor": {
            "type": "number",
            "nullable": true
          },
          "fRejectRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fAuxDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fQualityRptBillId": {
            "type": "number",
            "nullable": true
          },
          "fAuxReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fCheckMethod": {
            "type": "number",
            "nullable": true
          },
          "fIsCheck": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitStdAmtInTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fStockQtyOnlyForShow": {
            "type": "number",
            "nullable": true
          },
          "fPayReqPayAmountFor": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fDecimal": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3IcSubContractEntry": {
        "title": "NewK3IcSubContractEntry",
        "type": "object",
        "description": "(tsType: K3IcSubContractEntry, schemaOptions: { title: 'NewK3IcSubContractEntry' })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fIndex": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fDiscountRate": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fAmtDiscount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fStdAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fPayShipDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fbomInterId": {
            "type": "number",
            "nullable": true
          },
          "fInHighLimit": {
            "type": "number",
            "nullable": true
          },
          "fInLowLimit": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fEntryIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fInterIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fBillNoSrc": {
            "type": "string",
            "nullable": true
          },
          "fInterIdOrderSrc": {
            "type": "number",
            "nullable": true
          },
          "fEntryIdOrderSrc": {
            "type": "number",
            "nullable": true
          },
          "fOrderNo": {
            "type": "string",
            "nullable": true
          },
          "fInHighLimitQty": {
            "type": "number",
            "nullable": true
          },
          "fInLowLimitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fMrpTrackFlag": {
            "type": "number",
            "nullable": true
          },
          "fporInterId": {
            "type": "number",
            "nullable": true
          },
          "fporNumber": {
            "type": "string",
            "nullable": true
          },
          "fbCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fSecBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fbomCategory": {
            "type": "number",
            "nullable": true
          },
          "fSupConfirm": {
            "type": "string",
            "nullable": true
          },
          "fSupConDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConQty": {
            "type": "number",
            "nullable": true
          },
          "fSupConMem": {
            "type": "string",
            "nullable": true
          },
          "fSupConFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConfirmor": {
            "type": "number",
            "nullable": true
          },
          "fRejectRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fAuxDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fQualityRptBillId": {
            "type": "number",
            "nullable": true
          },
          "fAuxReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fCheckMethod": {
            "type": "number",
            "nullable": true
          },
          "fIsCheck": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitStdAmtInTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fStockQtyOnlyForShow": {
            "type": "number",
            "nullable": true
          },
          "fPayReqPayAmountFor": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fDecimal": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcSubContractEntry"
      },
      "K3IcSubContractEntryWithRelations": {
        "title": "K3IcSubContractEntryWithRelations",
        "type": "object",
        "description": "(tsType: K3IcSubContractEntryWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fIndex": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fDiscountRate": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fAmtDiscount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fStdAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fPayShipDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fbomInterId": {
            "type": "number",
            "nullable": true
          },
          "fInHighLimit": {
            "type": "number",
            "nullable": true
          },
          "fInLowLimit": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fEntryIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fInterIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fBillNoSrc": {
            "type": "string",
            "nullable": true
          },
          "fInterIdOrderSrc": {
            "type": "number",
            "nullable": true
          },
          "fEntryIdOrderSrc": {
            "type": "number",
            "nullable": true
          },
          "fOrderNo": {
            "type": "string",
            "nullable": true
          },
          "fInHighLimitQty": {
            "type": "number",
            "nullable": true
          },
          "fInLowLimitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fMrpTrackFlag": {
            "type": "number",
            "nullable": true
          },
          "fporInterId": {
            "type": "number",
            "nullable": true
          },
          "fporNumber": {
            "type": "string",
            "nullable": true
          },
          "fbCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fSecBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fbomCategory": {
            "type": "number",
            "nullable": true
          },
          "fSupConfirm": {
            "type": "string",
            "nullable": true
          },
          "fSupConDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConQty": {
            "type": "number",
            "nullable": true
          },
          "fSupConMem": {
            "type": "string",
            "nullable": true
          },
          "fSupConFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConfirmor": {
            "type": "number",
            "nullable": true
          },
          "fRejectRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fAuxDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fQualityRptBillId": {
            "type": "number",
            "nullable": true
          },
          "fAuxReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fCheckMethod": {
            "type": "number",
            "nullable": true
          },
          "fIsCheck": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitStdAmtInTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fStockQtyOnlyForShow": {
            "type": "number",
            "nullable": true
          },
          "fPayReqPayAmountFor": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fDecimal": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcSubContractEntryWithRelations"
      },
      "K3IcSubContractEntryPartial": {
        "title": "K3IcSubContractEntryPartial",
        "type": "object",
        "description": "(tsType: Partial<K3IcSubContractEntry>, schemaOptions: { partial: true })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fIndex": {
            "type": "number",
            "nullable": true
          },
          "fDetailId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fMapId": {
            "type": "number",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecCoefficient": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAuxTaxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fDiscountRate": {
            "type": "number",
            "nullable": true
          },
          "fAuxPriceDiscount": {
            "type": "number",
            "nullable": true
          },
          "fAmtDiscount": {
            "type": "number",
            "nullable": true
          },
          "fTaxRate": {
            "type": "number",
            "nullable": true
          },
          "fTaxAmount": {
            "type": "number",
            "nullable": true
          },
          "fAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fStdAllAmount": {
            "type": "number",
            "nullable": true
          },
          "fPayShipDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fbomInterId": {
            "type": "number",
            "nullable": true
          },
          "fInHighLimit": {
            "type": "number",
            "nullable": true
          },
          "fInLowLimit": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fMrpAutoClosed": {
            "type": "number",
            "nullable": true
          },
          "fMrpClosed": {
            "type": "number",
            "nullable": true
          },
          "fmrpLockFlag": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fEntryIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fInterIdSrc": {
            "type": "number",
            "nullable": true
          },
          "fBillNoSrc": {
            "type": "string",
            "nullable": true
          },
          "fInterIdOrderSrc": {
            "type": "number",
            "nullable": true
          },
          "fEntryIdOrderSrc": {
            "type": "number",
            "nullable": true
          },
          "fOrderNo": {
            "type": "string",
            "nullable": true
          },
          "fInHighLimitQty": {
            "type": "number",
            "nullable": true
          },
          "fInLowLimitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxStockQty": {
            "type": "number",
            "nullable": true
          },
          "fStockQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fReceiveAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fPlanMode": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fMrpTrackFlag": {
            "type": "number",
            "nullable": true
          },
          "fporInterId": {
            "type": "number",
            "nullable": true
          },
          "fporNumber": {
            "type": "string",
            "nullable": true
          },
          "fbCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecQtyInvoice": {
            "type": "number",
            "nullable": true
          },
          "fSecBCommitQty": {
            "type": "number",
            "nullable": true
          },
          "fSecStockQty": {
            "type": "number",
            "nullable": true
          },
          "fbomCategory": {
            "type": "number",
            "nullable": true
          },
          "fSupConfirm": {
            "type": "string",
            "nullable": true
          },
          "fSupConDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConQty": {
            "type": "number",
            "nullable": true
          },
          "fSupConMem": {
            "type": "string",
            "nullable": true
          },
          "fSupConFetchDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupConfirmor": {
            "type": "number",
            "nullable": true
          },
          "fRejectRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fRefuseNote": {
            "type": "string",
            "nullable": true
          },
          "fEntryAccessoryCount": {
            "type": "number",
            "nullable": true
          },
          "fAuxDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fDeliveryQty": {
            "type": "number",
            "nullable": true
          },
          "fQualityRptBillId": {
            "type": "number",
            "nullable": true
          },
          "fAuxReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fReceiptQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fReturnQty": {
            "type": "number",
            "nullable": true
          },
          "fCheckMethod": {
            "type": "number",
            "nullable": true
          },
          "fIsCheck": {
            "type": "number",
            "nullable": true
          },
          "fPayApplyAmountForCommit": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmt": {
            "type": "number",
            "nullable": true
          },
          "fCommitAmtTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitStdAmtInTax": {
            "type": "number",
            "nullable": true
          },
          "fCommitTax": {
            "type": "number",
            "nullable": true
          },
          "fStockQtyOnlyForShow": {
            "type": "number",
            "nullable": true
          },
          "fPayReqPayAmountFor": {
            "type": "number",
            "nullable": true
          },
          "fOrderBomEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOutSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fDecimal": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3IcSubContractEntry>"
      },
      "K3IcStockBill": {
        "title": "K3IcStockBill",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": false
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fUpStockWhenSave": {
            "type": "number",
            "nullable": true
          },
          "frob": {
            "type": "number",
            "nullable": true
          },
          "fHookStatus": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fSaleStyle": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fManagerId": {
            "type": "number",
            "nullable": true
          },
          "ffManagerId": {
            "type": "number",
            "nullable": true
          },
          "fsManagerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fPosterId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "fInterId"
        ],
        "additionalProperties": false
      },
      "NewK3IcStockBill": {
        "title": "NewK3IcStockBill",
        "type": "object",
        "description": "(tsType: K3IcStockBill, schemaOptions: { title: 'NewK3IcStockBill' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": false
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fUpStockWhenSave": {
            "type": "number",
            "nullable": true
          },
          "frob": {
            "type": "number",
            "nullable": true
          },
          "fHookStatus": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fSaleStyle": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fManagerId": {
            "type": "number",
            "nullable": true
          },
          "ffManagerId": {
            "type": "number",
            "nullable": true
          },
          "fsManagerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fPosterId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "fInterId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "K3IcStockBill"
      },
      "K3IcStockBillWithRelations": {
        "title": "K3IcStockBillWithRelations",
        "type": "object",
        "description": "(tsType: K3IcStockBillWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": false
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fUpStockWhenSave": {
            "type": "number",
            "nullable": true
          },
          "frob": {
            "type": "number",
            "nullable": true
          },
          "fHookStatus": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fSaleStyle": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fManagerId": {
            "type": "number",
            "nullable": true
          },
          "ffManagerId": {
            "type": "number",
            "nullable": true
          },
          "fsManagerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fPosterId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "fInterId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "K3IcStockBillWithRelations"
      },
      "K3IcStockBillPartial": {
        "title": "K3IcStockBillPartial",
        "type": "object",
        "description": "(tsType: Partial<K3IcStockBill>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": false
          },
          "fBillNo": {
            "type": "string",
            "nullable": true
          },
          "fTranType": {
            "type": "number",
            "nullable": true
          },
          "fCancellation": {
            "type": "boolean",
            "nullable": true
          },
          "fStatus": {
            "type": "number",
            "nullable": true
          },
          "fUpStockWhenSave": {
            "type": "number",
            "nullable": true
          },
          "frob": {
            "type": "number",
            "nullable": true
          },
          "fHookStatus": {
            "type": "number",
            "nullable": true
          },
          "fDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          },
          "fSaleStyle": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fDeptId": {
            "type": "number",
            "nullable": true
          },
          "fEmpId": {
            "type": "number",
            "nullable": true
          },
          "fManagerId": {
            "type": "number",
            "nullable": true
          },
          "ffManagerId": {
            "type": "number",
            "nullable": true
          },
          "fsManagerId": {
            "type": "number",
            "nullable": true
          },
          "fBillerId": {
            "type": "number",
            "nullable": true
          },
          "fPosterId": {
            "type": "number",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fExplanation": {
            "type": "string",
            "nullable": true
          },
          "fFetchAdd": {
            "type": "string",
            "nullable": true
          },
          "fSelTranType": {
            "type": "number",
            "nullable": true
          },
          "fPrintCount": {
            "type": "number",
            "nullable": true
          },
          "fBrId": {
            "type": "number",
            "nullable": true
          },
          "fSettleDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fManageType": {
            "type": "number",
            "nullable": true
          },
          "fEnterpriseId": {
            "type": "number",
            "nullable": true
          },
          "fSendStatus": {
            "type": "number",
            "nullable": true
          },
          "fAccessoryCount": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3IcStockBill>"
      },
      "K3IcStockBillEntry": {
        "title": "K3IcStockBillEntry",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyMust": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fdcStockId": {
            "type": "number",
            "nullable": true
          },
          "fdcspid": {
            "type": "number",
            "nullable": true
          },
          "fConsignPrice": {
            "type": "number",
            "nullable": true
          },
          "fConsignAmount": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOrderBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderInterId": {
            "type": "number",
            "nullable": true
          },
          "fOrderEntryId": {
            "type": "number",
            "nullable": true
          },
          "fQtyMust": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3IcStockBillEntry": {
        "title": "NewK3IcStockBillEntry",
        "type": "object",
        "description": "(tsType: K3IcStockBillEntry, schemaOptions: { title: 'NewK3IcStockBillEntry' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyMust": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fdcStockId": {
            "type": "number",
            "nullable": true
          },
          "fdcspid": {
            "type": "number",
            "nullable": true
          },
          "fConsignPrice": {
            "type": "number",
            "nullable": true
          },
          "fConsignAmount": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOrderBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderInterId": {
            "type": "number",
            "nullable": true
          },
          "fOrderEntryId": {
            "type": "number",
            "nullable": true
          },
          "fQtyMust": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcStockBillEntry"
      },
      "K3IcStockBillEntryWithRelations": {
        "title": "K3IcStockBillEntryWithRelations",
        "type": "object",
        "description": "(tsType: K3IcStockBillEntryWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyMust": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fdcStockId": {
            "type": "number",
            "nullable": true
          },
          "fdcspid": {
            "type": "number",
            "nullable": true
          },
          "fConsignPrice": {
            "type": "number",
            "nullable": true
          },
          "fConsignAmount": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOrderBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderInterId": {
            "type": "number",
            "nullable": true
          },
          "fOrderEntryId": {
            "type": "number",
            "nullable": true
          },
          "fQtyMust": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcStockBillEntryWithRelations"
      },
      "K3IcStockBillEntryPartial": {
        "title": "K3IcStockBillEntryPartial",
        "type": "object",
        "description": "(tsType: Partial<K3IcStockBillEntry>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fAuxQtyMust": {
            "type": "number",
            "nullable": true
          },
          "fAuxQty": {
            "type": "number",
            "nullable": true
          },
          "fAuxPrice": {
            "type": "number",
            "nullable": true
          },
          "fAmount": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fdcStockId": {
            "type": "number",
            "nullable": true
          },
          "fdcspid": {
            "type": "number",
            "nullable": true
          },
          "fConsignPrice": {
            "type": "number",
            "nullable": true
          },
          "fConsignAmount": {
            "type": "number",
            "nullable": true
          },
          "fSourceBillNo": {
            "type": "string",
            "nullable": true
          },
          "fSourceTranType": {
            "type": "number",
            "nullable": true
          },
          "fSourceInterId": {
            "type": "number",
            "nullable": true
          },
          "fSourceEntryId": {
            "type": "number",
            "nullable": true
          },
          "fOrderBillNo": {
            "type": "string",
            "nullable": true
          },
          "fOrderInterId": {
            "type": "number",
            "nullable": true
          },
          "fOrderEntryId": {
            "type": "number",
            "nullable": true
          },
          "fQtyMust": {
            "type": "number",
            "nullable": true
          },
          "fMapNumber": {
            "type": "string",
            "nullable": true
          },
          "fMapName": {
            "type": "string",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3IcStockBillEntry>"
      },
      "K3IcPrcPlyEntry": {
        "title": "K3IcPrcPlyEntry",
        "type": "object",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fRelatedId": {
            "type": "number",
            "nullable": true
          },
          "fModel": {
            "type": "string",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fBegQty": {
            "type": "number",
            "nullable": true
          },
          "fEndQty": {
            "type": "number",
            "nullable": true
          },
          "fCuryId": {
            "type": "number",
            "nullable": true
          },
          "fPriceType": {
            "type": "number",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fBegDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLeadTime": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fChecked": {
            "type": "string",
            "nullable": true
          },
          "fIndex": {
            "type": "number",
            "nullable": true
          },
          "fTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fBase": {
            "type": "number",
            "nullable": true
          },
          "fBase1": {
            "type": "number",
            "nullable": true
          },
          "fBegQtyBase": {
            "type": "number",
            "nullable": true
          },
          "fEndQtyBase": {
            "type": "number",
            "nullable": true
          },
          "fInteger": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fbCust": {
            "type": "number",
            "nullable": true
          },
          "fb2CustCls": {
            "type": "number",
            "nullable": true
          },
          "fb2Emp": {
            "type": "number",
            "nullable": true
          },
          "fb2EmpCls": {
            "type": "number",
            "nullable": true
          },
          "fb2VipGrp": {
            "type": "number",
            "nullable": true
          },
          "fb2Cust": {
            "type": "number",
            "nullable": true
          },
          "fb2ItemId": {
            "type": "number",
            "nullable": true
          },
          "fb2Item": {
            "type": "number",
            "nullable": true
          },
          "fFlagSave": {
            "type": "string",
            "nullable": true
          },
          "fMainterId": {
            "type": "number",
            "nullable": true
          },
          "fMaintDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCreator": {
            "type": "number",
            "nullable": true
          },
          "fOperator": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3IcPrcPlyEntry": {
        "title": "NewK3IcPrcPlyEntry",
        "type": "object",
        "description": "(tsType: K3IcPrcPlyEntry, schemaOptions: { title: 'NewK3IcPrcPlyEntry' })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fRelatedId": {
            "type": "number",
            "nullable": true
          },
          "fModel": {
            "type": "string",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fBegQty": {
            "type": "number",
            "nullable": true
          },
          "fEndQty": {
            "type": "number",
            "nullable": true
          },
          "fCuryId": {
            "type": "number",
            "nullable": true
          },
          "fPriceType": {
            "type": "number",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fBegDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLeadTime": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fChecked": {
            "type": "string",
            "nullable": true
          },
          "fIndex": {
            "type": "number",
            "nullable": true
          },
          "fTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fBase": {
            "type": "number",
            "nullable": true
          },
          "fBase1": {
            "type": "number",
            "nullable": true
          },
          "fBegQtyBase": {
            "type": "number",
            "nullable": true
          },
          "fEndQtyBase": {
            "type": "number",
            "nullable": true
          },
          "fInteger": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fbCust": {
            "type": "number",
            "nullable": true
          },
          "fb2CustCls": {
            "type": "number",
            "nullable": true
          },
          "fb2Emp": {
            "type": "number",
            "nullable": true
          },
          "fb2EmpCls": {
            "type": "number",
            "nullable": true
          },
          "fb2VipGrp": {
            "type": "number",
            "nullable": true
          },
          "fb2Cust": {
            "type": "number",
            "nullable": true
          },
          "fb2ItemId": {
            "type": "number",
            "nullable": true
          },
          "fb2Item": {
            "type": "number",
            "nullable": true
          },
          "fFlagSave": {
            "type": "string",
            "nullable": true
          },
          "fMainterId": {
            "type": "number",
            "nullable": true
          },
          "fMaintDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCreator": {
            "type": "number",
            "nullable": true
          },
          "fOperator": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcPrcPlyEntry"
      },
      "K3IcPrcPlyEntryWithRelations": {
        "title": "K3IcPrcPlyEntryWithRelations",
        "type": "object",
        "description": "(tsType: K3IcPrcPlyEntryWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fRelatedId": {
            "type": "number",
            "nullable": true
          },
          "fModel": {
            "type": "string",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fBegQty": {
            "type": "number",
            "nullable": true
          },
          "fEndQty": {
            "type": "number",
            "nullable": true
          },
          "fCuryId": {
            "type": "number",
            "nullable": true
          },
          "fPriceType": {
            "type": "number",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fBegDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLeadTime": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fChecked": {
            "type": "string",
            "nullable": true
          },
          "fIndex": {
            "type": "number",
            "nullable": true
          },
          "fTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fBase": {
            "type": "number",
            "nullable": true
          },
          "fBase1": {
            "type": "number",
            "nullable": true
          },
          "fBegQtyBase": {
            "type": "number",
            "nullable": true
          },
          "fEndQtyBase": {
            "type": "number",
            "nullable": true
          },
          "fInteger": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fbCust": {
            "type": "number",
            "nullable": true
          },
          "fb2CustCls": {
            "type": "number",
            "nullable": true
          },
          "fb2Emp": {
            "type": "number",
            "nullable": true
          },
          "fb2EmpCls": {
            "type": "number",
            "nullable": true
          },
          "fb2VipGrp": {
            "type": "number",
            "nullable": true
          },
          "fb2Cust": {
            "type": "number",
            "nullable": true
          },
          "fb2ItemId": {
            "type": "number",
            "nullable": true
          },
          "fb2Item": {
            "type": "number",
            "nullable": true
          },
          "fFlagSave": {
            "type": "string",
            "nullable": true
          },
          "fMainterId": {
            "type": "number",
            "nullable": true
          },
          "fMaintDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCreator": {
            "type": "number",
            "nullable": true
          },
          "fOperator": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcPrcPlyEntryWithRelations"
      },
      "K3IcPrcPlyEntryPartial": {
        "title": "K3IcPrcPlyEntryPartial",
        "type": "object",
        "description": "(tsType: Partial<K3IcPrcPlyEntry>, schemaOptions: { partial: true })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fEntryId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fRelatedId": {
            "type": "number",
            "nullable": true
          },
          "fModel": {
            "type": "string",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fUnitId": {
            "type": "number",
            "nullable": true
          },
          "fBegQty": {
            "type": "number",
            "nullable": true
          },
          "fEndQty": {
            "type": "number",
            "nullable": true
          },
          "fCuryId": {
            "type": "number",
            "nullable": true
          },
          "fPriceType": {
            "type": "number",
            "nullable": true
          },
          "fPrice": {
            "type": "number",
            "nullable": true
          },
          "fBegDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fEndDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fLeadTime": {
            "type": "number",
            "nullable": true
          },
          "fNote": {
            "type": "string",
            "nullable": true
          },
          "fChecked": {
            "type": "string",
            "nullable": true
          },
          "fIndex": {
            "type": "number",
            "nullable": true
          },
          "fTime": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fid": {
            "type": "number",
            "nullable": true
          },
          "fBase": {
            "type": "number",
            "nullable": true
          },
          "fBase1": {
            "type": "number",
            "nullable": true
          },
          "fBegQtyBase": {
            "type": "number",
            "nullable": true
          },
          "fEndQtyBase": {
            "type": "number",
            "nullable": true
          },
          "fInteger": {
            "type": "number",
            "nullable": true
          },
          "fClassTypeId": {
            "type": "number",
            "nullable": true
          },
          "fbCust": {
            "type": "number",
            "nullable": true
          },
          "fb2CustCls": {
            "type": "number",
            "nullable": true
          },
          "fb2Emp": {
            "type": "number",
            "nullable": true
          },
          "fb2EmpCls": {
            "type": "number",
            "nullable": true
          },
          "fb2VipGrp": {
            "type": "number",
            "nullable": true
          },
          "fb2Cust": {
            "type": "number",
            "nullable": true
          },
          "fb2ItemId": {
            "type": "number",
            "nullable": true
          },
          "fb2Item": {
            "type": "number",
            "nullable": true
          },
          "fFlagSave": {
            "type": "string",
            "nullable": true
          },
          "fMainterId": {
            "type": "number",
            "nullable": true
          },
          "fMaintDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCheckerId": {
            "type": "number",
            "nullable": true
          },
          "fCheckDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "fCreator": {
            "type": "number",
            "nullable": true
          },
          "fOperator": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3IcPrcPlyEntry>"
      },
      "K3IcPrcPlyEntrySpec": {
        "title": "K3IcPrcPlyEntrySpec",
        "type": "object",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fRelatedId": {
            "type": "number",
            "nullable": true
          },
          "flPriceCuryId": {
            "type": "number",
            "nullable": true
          },
          "fLowPrice": {
            "type": "number",
            "nullable": true
          },
          "fCanSell": {
            "type": "number",
            "nullable": true
          },
          "flPriceCtrl": {
            "type": "number",
            "nullable": true
          },
          "fFlag": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3IcPrcPlyEntrySpec": {
        "title": "NewK3IcPrcPlyEntrySpec",
        "type": "object",
        "description": "(tsType: K3IcPrcPlyEntrySpec, schemaOptions: { title: 'NewK3IcPrcPlyEntrySpec' })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fRelatedId": {
            "type": "number",
            "nullable": true
          },
          "flPriceCuryId": {
            "type": "number",
            "nullable": true
          },
          "fLowPrice": {
            "type": "number",
            "nullable": true
          },
          "fCanSell": {
            "type": "number",
            "nullable": true
          },
          "flPriceCtrl": {
            "type": "number",
            "nullable": true
          },
          "fFlag": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcPrcPlyEntrySpec"
      },
      "K3IcPrcPlyEntrySpecWithRelations": {
        "title": "K3IcPrcPlyEntrySpecWithRelations",
        "type": "object",
        "description": "(tsType: K3IcPrcPlyEntrySpecWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fRelatedId": {
            "type": "number",
            "nullable": true
          },
          "flPriceCuryId": {
            "type": "number",
            "nullable": true
          },
          "fLowPrice": {
            "type": "number",
            "nullable": true
          },
          "fCanSell": {
            "type": "number",
            "nullable": true
          },
          "flPriceCtrl": {
            "type": "number",
            "nullable": true
          },
          "fFlag": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcPrcPlyEntrySpecWithRelations"
      },
      "K3IcPrcPlyEntrySpecPartial": {
        "title": "K3IcPrcPlyEntrySpecPartial",
        "type": "object",
        "description": "(tsType: Partial<K3IcPrcPlyEntrySpec>, schemaOptions: { partial: true })",
        "properties": {
          "fInterId": {
            "type": "number",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fRelatedId": {
            "type": "number",
            "nullable": true
          },
          "flPriceCuryId": {
            "type": "number",
            "nullable": true
          },
          "fLowPrice": {
            "type": "number",
            "nullable": true
          },
          "fCanSell": {
            "type": "number",
            "nullable": true
          },
          "flPriceCtrl": {
            "type": "number",
            "nullable": true
          },
          "fFlag": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3IcPrcPlyEntrySpec>"
      },
      "K3IcInventory": {
        "title": "K3IcInventory",
        "type": "object",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fStockId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fBal": {
            "type": "number",
            "nullable": true
          },
          "fStockPlaceId": {
            "type": "number",
            "nullable": true
          },
          "fkfPeriod": {
            "type": "number",
            "nullable": true
          },
          "fkfDate": {
            "type": "string",
            "nullable": true
          },
          "fQtyLock": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewK3IcInventory": {
        "title": "NewK3IcInventory",
        "type": "object",
        "description": "(tsType: K3IcInventory, schemaOptions: { title: 'NewK3IcInventory' })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fStockId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fBal": {
            "type": "number",
            "nullable": true
          },
          "fStockPlaceId": {
            "type": "number",
            "nullable": true
          },
          "fkfPeriod": {
            "type": "number",
            "nullable": true
          },
          "fkfDate": {
            "type": "string",
            "nullable": true
          },
          "fQtyLock": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcInventory"
      },
      "K3IcInventoryWithRelations": {
        "title": "K3IcInventoryWithRelations",
        "type": "object",
        "description": "(tsType: K3IcInventoryWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fStockId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fBal": {
            "type": "number",
            "nullable": true
          },
          "fStockPlaceId": {
            "type": "number",
            "nullable": true
          },
          "fkfPeriod": {
            "type": "number",
            "nullable": true
          },
          "fkfDate": {
            "type": "string",
            "nullable": true
          },
          "fQtyLock": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "K3IcInventoryWithRelations"
      },
      "K3IcInventoryPartial": {
        "title": "K3IcInventoryPartial",
        "type": "object",
        "description": "(tsType: Partial<K3IcInventory>, schemaOptions: { partial: true })",
        "properties": {
          "fBrNo": {
            "type": "string",
            "nullable": true
          },
          "fItemId": {
            "type": "number",
            "nullable": true
          },
          "fBatchNo": {
            "type": "string",
            "nullable": true
          },
          "fStockId": {
            "type": "number",
            "nullable": true
          },
          "fQty": {
            "type": "number",
            "nullable": true
          },
          "fBal": {
            "type": "number",
            "nullable": true
          },
          "fStockPlaceId": {
            "type": "number",
            "nullable": true
          },
          "fkfPeriod": {
            "type": "number",
            "nullable": true
          },
          "fkfDate": {
            "type": "string",
            "nullable": true
          },
          "fQtyLock": {
            "type": "number",
            "nullable": true
          },
          "fAuxPropId": {
            "type": "number",
            "nullable": true
          },
          "fSecQty": {
            "type": "number",
            "nullable": true
          },
          "fmtoNo": {
            "type": "string",
            "nullable": true
          },
          "fSupplyId": {
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<K3IcInventory>"
      },
      "Itemsupplier": {
        "title": "Itemsupplier",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "supplierId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "leadtime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "resourceQty": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batchwindow": {
            "type": "string"
          },
          "extraSafetyLeadtime": {
            "type": "string"
          },
          "hardSafetyLeadtime": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "itemId",
          "supplierId"
        ],
        "additionalProperties": false
      },
      "NewItemsupplier": {
        "title": "NewItemsupplier",
        "type": "object",
        "description": "(tsType: Omit<Itemsupplier, 'id'>, schemaOptions: { title: 'NewItemsupplier', exclude: [ 'id' ] })",
        "properties": {
          "itemId": {
            "type": "string"
          },
          "supplierId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "leadtime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "resourceQty": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batchwindow": {
            "type": "string"
          },
          "extraSafetyLeadtime": {
            "type": "string"
          },
          "hardSafetyLeadtime": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "itemId",
          "supplierId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Itemsupplier, 'id'>"
      },
      "ItemsupplierWithRelations": {
        "title": "ItemsupplierWithRelations",
        "type": "object",
        "description": "(tsType: ItemsupplierWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "supplierId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "leadtime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "resourceQty": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batchwindow": {
            "type": "string"
          },
          "extraSafetyLeadtime": {
            "type": "string"
          },
          "hardSafetyLeadtime": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "itemId",
          "supplierId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ItemsupplierWithRelations"
      },
      "ItemsupplierPartial": {
        "title": "ItemsupplierPartial",
        "type": "object",
        "description": "(tsType: Partial<Itemsupplier>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "supplierId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "leadtime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "resourceQty": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batchwindow": {
            "type": "string"
          },
          "extraSafetyLeadtime": {
            "type": "string"
          },
          "hardSafetyLeadtime": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Itemsupplier>"
      },
      "Itemdistribution": {
        "title": "Itemdistribution",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "originId": {
            "type": "string"
          },
          "leadtime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "resourceQty": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batchwindow": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "itemId",
          "originId"
        ],
        "additionalProperties": false
      },
      "NewItemdistribution": {
        "title": "NewItemdistribution",
        "type": "object",
        "description": "(tsType: Itemdistribution, schemaOptions: { title: 'NewItemdistribution' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "originId": {
            "type": "string"
          },
          "leadtime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "resourceQty": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batchwindow": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "itemId",
          "originId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Itemdistribution"
      },
      "ItemdistributionWithRelations": {
        "title": "ItemdistributionWithRelations",
        "type": "object",
        "description": "(tsType: ItemdistributionWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "originId": {
            "type": "string"
          },
          "leadtime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "resourceQty": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batchwindow": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "itemId",
          "originId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ItemdistributionWithRelations"
      },
      "ItemdistributionPartial": {
        "title": "ItemdistributionPartial",
        "type": "object",
        "description": "(tsType: Partial<Itemdistribution>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "originId": {
            "type": "string"
          },
          "leadtime": {
            "type": "string"
          },
          "sizeminimum": {
            "type": "number"
          },
          "sizemultiple": {
            "type": "number"
          },
          "sizemaximum": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "effectiveStart": {
            "type": "string",
            "format": "date-time"
          },
          "effectiveEnd": {
            "type": "string",
            "format": "date-time"
          },
          "fence": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "resourceQty": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batchwindow": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Itemdistribution>"
      },
      "NewItem": {
        "title": "NewItem",
        "type": "object",
        "description": "(tsType: Item, schemaOptions: { title: 'NewItem' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "type": {
            "type": "string"
          },
          "volume": {
            "type": "number"
          },
          "weight": {
            "type": "number"
          },
          "periodofcover": {
            "type": "number"
          },
          "uom": {
            "type": "string"
          },
          "latedemandcount": {
            "type": "number"
          },
          "latedemandquantity": {
            "type": "number"
          },
          "latedemandvalue": {
            "type": "number"
          },
          "unplanneddemandcount": {
            "type": "number"
          },
          "unplanneddemandquantity": {
            "type": "number"
          },
          "unplanneddemandvalue": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "specification": {
            "type": "string"
          },
          "pictureCode": {
            "type": "string"
          },
          "productionName": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "erpClass": {
            "type": "string"
          },
          "baseUnit": {
            "type": "string"
          },
          "baseUnitCode": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "productionFullname": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "url": {
            "type": "string"
          },
          "color": {
            "type": "string"
          },
          "material": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "price1": {
            "type": "number"
          },
          "price2": {
            "type": "number"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "stock": {
            "type": "string"
          },
          "stockPlace": {
            "type": "string"
          },
          "itemGroup": {
            "type": "string"
          },
          "hasOperation": {
            "type": "boolean"
          },
          "stockNumber": {
            "type": "string"
          },
          "stockPlaceNumber": {
            "type": "string"
          },
          "dNumber": {
            "type": "string"
          },
          "mNumber": {
            "type": "number"
          },
          "parameter": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Item"
      },
      "ItemWithRelations": {
        "title": "ItemWithRelations",
        "type": "object",
        "description": "(tsType: ItemWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "type": {
            "type": "string"
          },
          "volume": {
            "type": "number"
          },
          "weight": {
            "type": "number"
          },
          "periodofcover": {
            "type": "number"
          },
          "uom": {
            "type": "string"
          },
          "latedemandcount": {
            "type": "number"
          },
          "latedemandquantity": {
            "type": "number"
          },
          "latedemandvalue": {
            "type": "number"
          },
          "unplanneddemandcount": {
            "type": "number"
          },
          "unplanneddemandquantity": {
            "type": "number"
          },
          "unplanneddemandvalue": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "specification": {
            "type": "string"
          },
          "pictureCode": {
            "type": "string"
          },
          "productionName": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "erpClass": {
            "type": "string"
          },
          "baseUnit": {
            "type": "string"
          },
          "baseUnitCode": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "productionFullname": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "url": {
            "type": "string"
          },
          "color": {
            "type": "string"
          },
          "material": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "price1": {
            "type": "number"
          },
          "price2": {
            "type": "number"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "stock": {
            "type": "string"
          },
          "stockPlace": {
            "type": "string"
          },
          "itemGroup": {
            "type": "string"
          },
          "hasOperation": {
            "type": "boolean"
          },
          "stockNumber": {
            "type": "string"
          },
          "stockPlaceNumber": {
            "type": "string"
          },
          "dNumber": {
            "type": "string"
          },
          "mNumber": {
            "type": "number"
          },
          "parameter": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ItemWithRelations"
      },
      "ItemPartial": {
        "title": "ItemPartial",
        "type": "object",
        "description": "(tsType: Partial<Item>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "type": {
            "type": "string"
          },
          "volume": {
            "type": "number"
          },
          "weight": {
            "type": "number"
          },
          "periodofcover": {
            "type": "number"
          },
          "uom": {
            "type": "string"
          },
          "latedemandcount": {
            "type": "number"
          },
          "latedemandquantity": {
            "type": "number"
          },
          "latedemandvalue": {
            "type": "number"
          },
          "unplanneddemandcount": {
            "type": "number"
          },
          "unplanneddemandquantity": {
            "type": "number"
          },
          "unplanneddemandvalue": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "specification": {
            "type": "string"
          },
          "pictureCode": {
            "type": "string"
          },
          "productionName": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "erpClass": {
            "type": "string"
          },
          "baseUnit": {
            "type": "string"
          },
          "baseUnitCode": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "productionFullname": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "url": {
            "type": "string"
          },
          "color": {
            "type": "string"
          },
          "material": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "price1": {
            "type": "number"
          },
          "price2": {
            "type": "number"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "stock": {
            "type": "string"
          },
          "stockPlace": {
            "type": "string"
          },
          "itemGroup": {
            "type": "string"
          },
          "hasOperation": {
            "type": "boolean"
          },
          "stockNumber": {
            "type": "string"
          },
          "stockPlaceNumber": {
            "type": "string"
          },
          "dNumber": {
            "type": "string"
          },
          "mNumber": {
            "type": "number"
          },
          "parameter": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Item>"
      },
      "HasDuplicateOperationIdWithMixedStatus": {
        "title": "HasDuplicateOperationIdWithMixedStatus",
        "type": "object",
        "properties": {
          "exists": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewHasDuplicateOperationIdWithMixedStatus": {
        "title": "NewHasDuplicateOperationIdWithMixedStatus",
        "type": "object",
        "description": "(tsType: HasDuplicateOperationIdWithMixedStatus, schemaOptions: { title: 'NewHasDuplicateOperationIdWithMixedStatus' })",
        "properties": {
          "exists": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "HasDuplicateOperationIdWithMixedStatus"
      },
      "HasDuplicateOperationIdWithMixedStatusWithRelations": {
        "title": "HasDuplicateOperationIdWithMixedStatusWithRelations",
        "type": "object",
        "description": "(tsType: HasDuplicateOperationIdWithMixedStatusWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "exists": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "HasDuplicateOperationIdWithMixedStatusWithRelations"
      },
      "HasDuplicateOperationIdWithMixedStatusPartial": {
        "title": "HasDuplicateOperationIdWithMixedStatusPartial",
        "type": "object",
        "description": "(tsType: Partial<HasDuplicateOperationIdWithMixedStatus>, schemaOptions: { partial: true })",
        "properties": {
          "exists": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<HasDuplicateOperationIdWithMixedStatus>"
      },
      "HasDuplicateOperationIdAllApproved": {
        "title": "HasDuplicateOperationIdAllApproved",
        "type": "object",
        "properties": {
          "exists": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "NewHasDuplicateOperationIdAllApproved": {
        "title": "NewHasDuplicateOperationIdAllApproved",
        "type": "object",
        "description": "(tsType: HasDuplicateOperationIdAllApproved, schemaOptions: { title: 'NewHasDuplicateOperationIdAllApproved' })",
        "properties": {
          "exists": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "HasDuplicateOperationIdAllApproved"
      },
      "HasDuplicateOperationIdAllApprovedWithRelations": {
        "title": "HasDuplicateOperationIdAllApprovedWithRelations",
        "type": "object",
        "description": "(tsType: HasDuplicateOperationIdAllApprovedWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "exists": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "HasDuplicateOperationIdAllApprovedWithRelations"
      },
      "HasDuplicateOperationIdAllApprovedPartial": {
        "title": "HasDuplicateOperationIdAllApprovedPartial",
        "type": "object",
        "description": "(tsType: Partial<HasDuplicateOperationIdAllApproved>, schemaOptions: { partial: true })",
        "properties": {
          "exists": {
            "type": "boolean",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<HasDuplicateOperationIdAllApproved>"
      },
      "ExecuteSchedule": {
        "title": "ExecuteSchedule",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "nextRun": {
            "type": "string",
            "format": "date-time"
          },
          "emailFailure": {
            "type": "string"
          },
          "emailSuccess": {
            "type": "string"
          },
          "data": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewExecuteSchedule": {
        "title": "NewExecuteSchedule",
        "type": "object",
        "description": "(tsType: ExecuteSchedule, schemaOptions: { title: 'NewExecuteSchedule' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "nextRun": {
            "type": "string",
            "format": "date-time"
          },
          "emailFailure": {
            "type": "string"
          },
          "emailSuccess": {
            "type": "string"
          },
          "data": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ExecuteSchedule"
      },
      "ExecuteScheduleWithRelations": {
        "title": "ExecuteScheduleWithRelations",
        "type": "object",
        "description": "(tsType: ExecuteScheduleWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "nextRun": {
            "type": "string",
            "format": "date-time"
          },
          "emailFailure": {
            "type": "string"
          },
          "emailSuccess": {
            "type": "string"
          },
          "data": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ExecuteScheduleWithRelations"
      },
      "ExecuteSchedulePartial": {
        "title": "ExecuteSchedulePartial",
        "type": "object",
        "description": "(tsType: Partial<ExecuteSchedule>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "nextRun": {
            "type": "string",
            "format": "date-time"
          },
          "emailFailure": {
            "type": "string"
          },
          "emailSuccess": {
            "type": "string"
          },
          "data": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<ExecuteSchedule>"
      },
      "ExecuteLog": {
        "title": "ExecuteLog",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "submitted": {
            "type": "string",
            "format": "date-time"
          },
          "started": {
            "type": "string",
            "format": "date-time"
          },
          "finished": {
            "type": "string",
            "format": "date-time"
          },
          "arguments": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "logfile": {
            "type": "string"
          },
          "processid": {
            "type": "number"
          }
        },
        "required": [
          "name",
          "submitted",
          "status"
        ],
        "additionalProperties": false
      },
      "NewExecuteLog": {
        "title": "NewExecuteLog",
        "type": "object",
        "description": "(tsType: ExecuteLog, schemaOptions: { title: 'NewExecuteLog' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "submitted": {
            "type": "string",
            "format": "date-time"
          },
          "started": {
            "type": "string",
            "format": "date-time"
          },
          "finished": {
            "type": "string",
            "format": "date-time"
          },
          "arguments": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "logfile": {
            "type": "string"
          },
          "processid": {
            "type": "number"
          }
        },
        "required": [
          "name",
          "submitted",
          "status"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ExecuteLog"
      },
      "ExecuteLogWithRelations": {
        "title": "ExecuteLogWithRelations",
        "type": "object",
        "description": "(tsType: ExecuteLogWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "submitted": {
            "type": "string",
            "format": "date-time"
          },
          "started": {
            "type": "string",
            "format": "date-time"
          },
          "finished": {
            "type": "string",
            "format": "date-time"
          },
          "arguments": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "logfile": {
            "type": "string"
          },
          "processid": {
            "type": "number"
          }
        },
        "required": [
          "name",
          "submitted",
          "status"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ExecuteLogWithRelations"
      },
      "ExecuteLogPartial": {
        "title": "ExecuteLogPartial",
        "type": "object",
        "description": "(tsType: Partial<ExecuteLog>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "submitted": {
            "type": "string",
            "format": "date-time"
          },
          "started": {
            "type": "string",
            "format": "date-time"
          },
          "finished": {
            "type": "string",
            "format": "date-time"
          },
          "arguments": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "logfile": {
            "type": "string"
          },
          "processid": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<ExecuteLog>"
      },
      "DjangoMigrations": {
        "title": "DjangoMigrations",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "app": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "applied": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "app",
          "name",
          "applied"
        ],
        "additionalProperties": false
      },
      "NewDjangoMigrations": {
        "title": "NewDjangoMigrations",
        "type": "object",
        "description": "(tsType: DjangoMigrations, schemaOptions: { title: 'NewDjangoMigrations' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "app": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "applied": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "app",
          "name",
          "applied"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DjangoMigrations"
      },
      "DjangoMigrationsWithRelations": {
        "title": "DjangoMigrationsWithRelations",
        "type": "object",
        "description": "(tsType: DjangoMigrationsWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "app": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "applied": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "app",
          "name",
          "applied"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DjangoMigrationsWithRelations"
      },
      "DjangoMigrationsPartial": {
        "title": "DjangoMigrationsPartial",
        "type": "object",
        "description": "(tsType: Partial<DjangoMigrations>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "app": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "applied": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<DjangoMigrations>"
      },
      "DjangoContentType": {
        "title": "DjangoContentType",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "appLabel": {
            "type": "string"
          },
          "model": {
            "type": "string"
          }
        },
        "required": [
          "appLabel",
          "model"
        ],
        "additionalProperties": false
      },
      "NewDjangoContentType": {
        "title": "NewDjangoContentType",
        "type": "object",
        "description": "(tsType: DjangoContentType, schemaOptions: { title: 'NewDjangoContentType' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "appLabel": {
            "type": "string"
          },
          "model": {
            "type": "string"
          }
        },
        "required": [
          "appLabel",
          "model"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DjangoContentType"
      },
      "DjangoContentTypeWithRelations": {
        "title": "DjangoContentTypeWithRelations",
        "type": "object",
        "description": "(tsType: DjangoContentTypeWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "appLabel": {
            "type": "string"
          },
          "model": {
            "type": "string"
          }
        },
        "required": [
          "appLabel",
          "model"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DjangoContentTypeWithRelations"
      },
      "DjangoContentTypePartial": {
        "title": "DjangoContentTypePartial",
        "type": "object",
        "description": "(tsType: Partial<DjangoContentType>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "appLabel": {
            "type": "string"
          },
          "model": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<DjangoContentType>"
      },
      "DjangoAdminLog": {
        "title": "DjangoAdminLog",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "actionTime": {
            "type": "string",
            "format": "date-time"
          },
          "objectId": {
            "type": "string"
          },
          "objectRepr": {
            "type": "string"
          },
          "actionFlag": {
            "type": "number"
          },
          "changeMessage": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          }
        },
        "required": [
          "actionTime",
          "objectRepr",
          "actionFlag",
          "changeMessage",
          "userId"
        ],
        "additionalProperties": false
      },
      "NewDjangoAdminLog": {
        "title": "NewDjangoAdminLog",
        "type": "object",
        "description": "(tsType: DjangoAdminLog, schemaOptions: { title: 'NewDjangoAdminLog' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "actionTime": {
            "type": "string",
            "format": "date-time"
          },
          "objectId": {
            "type": "string"
          },
          "objectRepr": {
            "type": "string"
          },
          "actionFlag": {
            "type": "number"
          },
          "changeMessage": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          }
        },
        "required": [
          "actionTime",
          "objectRepr",
          "actionFlag",
          "changeMessage",
          "userId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DjangoAdminLog"
      },
      "DjangoAdminLogWithRelations": {
        "title": "DjangoAdminLogWithRelations",
        "type": "object",
        "description": "(tsType: DjangoAdminLogWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "actionTime": {
            "type": "string",
            "format": "date-time"
          },
          "objectId": {
            "type": "string"
          },
          "objectRepr": {
            "type": "string"
          },
          "actionFlag": {
            "type": "number"
          },
          "changeMessage": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          }
        },
        "required": [
          "actionTime",
          "objectRepr",
          "actionFlag",
          "changeMessage",
          "userId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DjangoAdminLogWithRelations"
      },
      "DjangoAdminLogPartial": {
        "title": "DjangoAdminLogPartial",
        "type": "object",
        "description": "(tsType: Partial<DjangoAdminLog>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "actionTime": {
            "type": "string",
            "format": "date-time"
          },
          "objectId": {
            "type": "string"
          },
          "objectRepr": {
            "type": "string"
          },
          "actionFlag": {
            "type": "number"
          },
          "changeMessage": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<DjangoAdminLog>"
      },
      "Department": {
        "title": "Department",
        "type": "object",
        "properties": {
          "dwbm": {
            "type": "string",
            "nullable": false
          },
          "dwname": {
            "type": "string",
            "nullable": true
          },
          "zjm": {
            "type": "string",
            "nullable": true
          },
          "mydate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "locationId": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "dwbm"
        ],
        "additionalProperties": false
      },
      "NewDepartment": {
        "title": "NewDepartment",
        "type": "object",
        "description": "(tsType: Department, schemaOptions: { title: 'NewDepartment' })",
        "properties": {
          "dwbm": {
            "type": "string",
            "nullable": false
          },
          "dwname": {
            "type": "string",
            "nullable": true
          },
          "zjm": {
            "type": "string",
            "nullable": true
          },
          "mydate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "locationId": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "dwbm"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Department"
      },
      "DepartmentWithRelations": {
        "title": "DepartmentWithRelations",
        "type": "object",
        "description": "(tsType: DepartmentWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "dwbm": {
            "type": "string",
            "nullable": false
          },
          "dwname": {
            "type": "string",
            "nullable": true
          },
          "zjm": {
            "type": "string",
            "nullable": true
          },
          "mydate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "locationId": {
            "type": "string",
            "nullable": true
          }
        },
        "required": [
          "dwbm"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DepartmentWithRelations"
      },
      "DepartmentPartial": {
        "title": "DepartmentPartial",
        "type": "object",
        "description": "(tsType: Partial<Department>, schemaOptions: { partial: true })",
        "properties": {
          "dwbm": {
            "type": "string",
            "nullable": false
          },
          "dwname": {
            "type": "string",
            "nullable": true
          },
          "zjm": {
            "type": "string",
            "nullable": true
          },
          "mydate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "locationId": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Department>"
      },
      "NewDemand": {
        "title": "NewDemand",
        "type": "object",
        "description": "(tsType: Demand, schemaOptions: { title: 'NewDemand' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "customerId": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "minshipment": {
            "type": "number"
          },
          "maxlateness": {
            "type": "string"
          },
          "delay": {
            "type": "string"
          },
          "plannedquantity": {
            "type": "number"
          },
          "deliverydate": {
            "type": "string",
            "format": "date-time"
          },
          "plan": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "operationId": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "customerdue": {
            "type": "string",
            "format": "date-time"
          },
          "customerquantity": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "person": {
            "type": "string"
          },
          "ready": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "orderCode": {
            "type": "string"
          },
          "totalProductionTime": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "plannedLackQuantity": {
            "type": "number"
          },
          "storedQuantity": {
            "type": "number"
          },
          "storedLackQuantity": {
            "type": "number"
          },
          "actualDeliveryDate": {
            "type": "string",
            "format": "date-time"
          },
          "actualDelay": {
            "type": "string"
          },
          "productionStatus": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "estimatedNetDuration": {
            "type": "string"
          },
          "class": {
            "type": "string"
          },
          "isArchive": {
            "type": "boolean"
          },
          "supplierId": {
            "type": "string"
          },
          "priorityClass": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "operationSizeminimum": {
            "type": "number"
          },
          "operationSizemultiple": {
            "type": "number"
          },
          "operationSizemaximum": {
            "type": "number"
          },
          "bom2Id": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "isFollow": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isLock": {
            "type": "boolean"
          },
          "isPrinted": {
            "type": "boolean"
          },
          "printPerson": {
            "type": "string"
          },
          "isPush": {
            "type": "boolean"
          },
          "createPerson": {
            "type": "string"
          },
          "forecastOrder": {
            "type": "string"
          },
          "manuOrder": {
            "type": "string"
          },
          "bomId": {
            "type": "string"
          },
          "isSplit": {
            "type": "boolean"
          },
          "itemPicturecode": {
            "type": "string"
          },
          "planDate": {
            "type": "string",
            "format": "date-time"
          },
          "isEmergency": {
            "type": "boolean"
          },
          "isOutsouring": {
            "type": "boolean"
          },
          "itemResource": {
            "type": "string"
          },
          "itemOperation": {
            "type": "string"
          },
          "itemMaterial": {
            "type": "string"
          },
          "bom2Id2": {
            "type": "string"
          },
          "itemFactor": {
            "type": "number"
          },
          "detail": {
            "type": "string"
          }
        },
        "required": [
          "itemId",
          "locationId",
          "customerId",
          "due",
          "quantity",
          "priority"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Demand"
      },
      "Customer": {
        "title": "Customer",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "company": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "telephone": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "linkman": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "Bom2": {
        "title": "Bom2",
        "type": "object",
        "properties": {
          "bomcode": {
            "type": "string"
          },
          "usestatus": {
            "type": "string"
          },
          "bomskip": {
            "type": "string"
          },
          "lastupdateperson": {
            "type": "string"
          },
          "lastupdatedate": {
            "type": "string",
            "format": "date-time"
          },
          "lastusedperson": {
            "type": "string"
          },
          "lastuseddate": {
            "type": "string",
            "format": "date-time"
          },
          "bomentryid": {
            "type": "string"
          },
          "materialtype": {
            "type": "string"
          },
          "marshaltype": {
            "type": "string"
          },
          "stock": {
            "type": "string"
          },
          "spbh": {
            "type": "string"
          },
          "spname": {
            "type": "string"
          },
          "spth": {
            "type": "string"
          },
          "gg": {
            "type": "string"
          },
          "spclass": {
            "type": "string"
          },
          "spquantity": {
            "type": "number"
          },
          "spyield": {
            "type": "number"
          },
          "bjbm": {
            "type": "string"
          },
          "bjname": {
            "type": "string"
          },
          "bjth": {
            "type": "string"
          },
          "bjgg": {
            "type": "string"
          },
          "bjclass": {
            "type": "string"
          },
          "bjquantity": {
            "type": "number"
          },
          "bjunit": {
            "type": "string"
          },
          "bmbm": {
            "type": "string"
          },
          "dwname": {
            "type": "string"
          },
          "zjm": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "gxbm": {
            "type": "string"
          },
          "gxsl": {
            "type": "number"
          },
          "rs": {
            "type": "number"
          },
          "sj": {
            "type": "number"
          },
          "pr": {
            "type": "number"
          },
          "bz": {
            "type": "string"
          },
          "tjbz": {
            "type": "string"
          },
          "mydate": {
            "type": "string",
            "format": "date-time"
          },
          "class": {
            "type": "string"
          },
          "zsj": {
            "type": "number"
          },
          "zpr": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "gap": {
            "type": "string"
          },
          "quantityCheck": {
            "type": "number"
          },
          "xh": {
            "type": "number"
          },
          "woven": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "erpCode": {
            "type": "string"
          },
          "detail": {
            "type": "string"
          },
          "itemNeedleNumber": {
            "type": "number"
          },
          "itemLineLength": {
            "type": "number"
          },
          "itemColor": {
            "type": "string"
          },
          "itemBaseLine": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "DemandWithRelations": {
        "title": "DemandWithRelations",
        "type": "object",
        "description": "(tsType: DemandWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "customerId": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "minshipment": {
            "type": "number"
          },
          "maxlateness": {
            "type": "string"
          },
          "delay": {
            "type": "string"
          },
          "plannedquantity": {
            "type": "number"
          },
          "deliverydate": {
            "type": "string",
            "format": "date-time"
          },
          "plan": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "operationId": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "customerdue": {
            "type": "string",
            "format": "date-time"
          },
          "customerquantity": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "person": {
            "type": "string"
          },
          "ready": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "orderCode": {
            "type": "string"
          },
          "totalProductionTime": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "plannedLackQuantity": {
            "type": "number"
          },
          "storedQuantity": {
            "type": "number"
          },
          "storedLackQuantity": {
            "type": "number"
          },
          "actualDeliveryDate": {
            "type": "string",
            "format": "date-time"
          },
          "actualDelay": {
            "type": "string"
          },
          "productionStatus": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "estimatedNetDuration": {
            "type": "string"
          },
          "class": {
            "type": "string"
          },
          "isArchive": {
            "type": "boolean"
          },
          "supplierId": {
            "type": "string"
          },
          "priorityClass": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "operationSizeminimum": {
            "type": "number"
          },
          "operationSizemultiple": {
            "type": "number"
          },
          "operationSizemaximum": {
            "type": "number"
          },
          "bom2Id": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "isFollow": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isLock": {
            "type": "boolean"
          },
          "isPrinted": {
            "type": "boolean"
          },
          "printPerson": {
            "type": "string"
          },
          "isPush": {
            "type": "boolean"
          },
          "createPerson": {
            "type": "string"
          },
          "forecastOrder": {
            "type": "string"
          },
          "manuOrder": {
            "type": "string"
          },
          "bomId": {
            "type": "string"
          },
          "isSplit": {
            "type": "boolean"
          },
          "itemPicturecode": {
            "type": "string"
          },
          "planDate": {
            "type": "string",
            "format": "date-time"
          },
          "isEmergency": {
            "type": "boolean"
          },
          "isOutsouring": {
            "type": "boolean"
          },
          "itemResource": {
            "type": "string"
          },
          "itemOperation": {
            "type": "string"
          },
          "itemMaterial": {
            "type": "string"
          },
          "bom2Id2": {
            "type": "string"
          },
          "itemFactor": {
            "type": "number"
          },
          "detail": {
            "type": "string"
          },
          "item": {
            "$ref": "#/components/schemas/Item"
          },
          "foreignKey": {},
          "location": {
            "$ref": "#/components/schemas/Location"
          },
          "customer": {
            "$ref": "#/components/schemas/Customer"
          },
          "operation": {
            "$ref": "#/components/schemas/Operation"
          },
          "supplier": {
            "$ref": "#/components/schemas/Supplier"
          },
          "operationplan": {
            "$ref": "#/components/schemas/Operationplan"
          },
          "bom2": {
            "$ref": "#/components/schemas/Bom2"
          }
        },
        "required": [
          "itemId",
          "locationId",
          "customerId",
          "due",
          "quantity",
          "priority"
        ],
        "additionalProperties": false,
        "x-typescript-type": "DemandWithRelations"
      },
      "DemandPartial": {
        "title": "DemandPartial",
        "type": "object",
        "description": "(tsType: Partial<Demand>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "customerId": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "priority": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "minshipment": {
            "type": "number"
          },
          "maxlateness": {
            "type": "string"
          },
          "delay": {
            "type": "string"
          },
          "plannedquantity": {
            "type": "number"
          },
          "deliverydate": {
            "type": "string",
            "format": "date-time"
          },
          "plan": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "operationId": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "customerdue": {
            "type": "string",
            "format": "date-time"
          },
          "customerquantity": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "person": {
            "type": "string"
          },
          "ready": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "orderCode": {
            "type": "string"
          },
          "totalProductionTime": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "plannedLackQuantity": {
            "type": "number"
          },
          "storedQuantity": {
            "type": "number"
          },
          "storedLackQuantity": {
            "type": "number"
          },
          "actualDeliveryDate": {
            "type": "string",
            "format": "date-time"
          },
          "actualDelay": {
            "type": "string"
          },
          "productionStatus": {
            "type": "string"
          },
          "fullName": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "estimatedNetDuration": {
            "type": "string"
          },
          "class": {
            "type": "string"
          },
          "isArchive": {
            "type": "boolean"
          },
          "supplierId": {
            "type": "string"
          },
          "priorityClass": {
            "type": "string"
          },
          "operationplanReference": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "operationSizeminimum": {
            "type": "number"
          },
          "operationSizemultiple": {
            "type": "number"
          },
          "operationSizemaximum": {
            "type": "number"
          },
          "bom2Id": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "isFollow": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isLock": {
            "type": "boolean"
          },
          "isPrinted": {
            "type": "boolean"
          },
          "printPerson": {
            "type": "string"
          },
          "isPush": {
            "type": "boolean"
          },
          "createPerson": {
            "type": "string"
          },
          "forecastOrder": {
            "type": "string"
          },
          "manuOrder": {
            "type": "string"
          },
          "bomId": {
            "type": "string"
          },
          "isSplit": {
            "type": "boolean"
          },
          "itemPicturecode": {
            "type": "string"
          },
          "planDate": {
            "type": "string",
            "format": "date-time"
          },
          "isEmergency": {
            "type": "boolean"
          },
          "isOutsouring": {
            "type": "boolean"
          },
          "itemResource": {
            "type": "string"
          },
          "itemOperation": {
            "type": "string"
          },
          "itemMaterial": {
            "type": "string"
          },
          "bom2Id2": {
            "type": "string"
          },
          "itemFactor": {
            "type": "number"
          },
          "detail": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Demand>"
      },
      "DemandEmergency": {
        "title": "DemandEmergency",
        "type": "object",
        "properties": {
          "demandId": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "person": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "personChanged": {
            "type": "boolean"
          },
          "quantityChanged": {
            "type": "boolean"
          },
          "dueChanged": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isHide": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "NewDemandEmergency": {
        "title": "NewDemandEmergency",
        "type": "object",
        "description": "(tsType: DemandEmergency, schemaOptions: { title: 'NewDemandEmergency' })",
        "properties": {
          "demandId": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "person": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "personChanged": {
            "type": "boolean"
          },
          "quantityChanged": {
            "type": "boolean"
          },
          "dueChanged": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isHide": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "DemandEmergency"
      },
      "DemandEmergencyWithRelations": {
        "title": "DemandEmergencyWithRelations",
        "type": "object",
        "description": "(tsType: DemandEmergencyWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "demandId": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "person": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "personChanged": {
            "type": "boolean"
          },
          "quantityChanged": {
            "type": "boolean"
          },
          "dueChanged": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isHide": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "DemandEmergencyWithRelations"
      },
      "DemandEmergencyPartial": {
        "title": "DemandEmergencyPartial",
        "type": "object",
        "description": "(tsType: Partial<DemandEmergency>, schemaOptions: { partial: true })",
        "properties": {
          "demandId": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "person": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "personChanged": {
            "type": "boolean"
          },
          "quantityChanged": {
            "type": "boolean"
          },
          "dueChanged": {
            "type": "boolean"
          },
          "remark": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "isHide": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<DemandEmergency>"
      },
      "NewCustomer": {
        "title": "NewCustomer",
        "type": "object",
        "description": "(tsType: Customer, schemaOptions: { title: 'NewCustomer' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "company": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "telephone": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "linkman": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Customer"
      },
      "CustomerWithRelations": {
        "title": "CustomerWithRelations",
        "type": "object",
        "description": "(tsType: CustomerWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "company": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "telephone": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "linkman": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "CustomerWithRelations"
      },
      "CustomerPartial": {
        "title": "CustomerPartial",
        "type": "object",
        "description": "(tsType: Partial<Customer>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "ownerId": {
            "type": "string"
          },
          "lft": {
            "type": "number"
          },
          "rght": {
            "type": "number"
          },
          "lvl": {
            "type": "number"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "company": {
            "type": "string"
          },
          "address": {
            "type": "string"
          },
          "telephone": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "linkman": {
            "type": "string"
          },
          "erpCode": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Customer>"
      },
      "CostRecord": {
        "title": "CostRecord",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "year": {
            "type": "number"
          },
          "month": {
            "type": "number"
          },
          "demandId": {
            "type": "string"
          },
          "customerId": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "isPlanned": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "unfinishedOperationId": {
            "type": "string"
          },
          "unfinishedLocationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "plannedQuantity": {
            "type": "number"
          },
          "reportedQuantityYazhu": {
            "type": "number"
          },
          "unfinishedQuantity": {
            "type": "number"
          },
          "finishedQuantityTotal": {
            "type": "number"
          },
          "finishedQuantityMonth": {
            "type": "number"
          },
          "materialQuantityManufacturing": {
            "type": "number"
          },
          "materialQuantityOutsouring": {
            "type": "number"
          },
          "materialPriceManufacturing": {
            "type": "number"
          },
          "materialPriceOutsouring": {
            "type": "number"
          },
          "materialCostUnfinished": {
            "type": "number"
          },
          "materialCostFinished": {
            "type": "number"
          },
          "materialReceiveOperationId": {
            "type": "number"
          },
          "materialReceiveLocationId": {
            "type": "number"
          },
          "outsouringPrice": {
            "type": "number"
          },
          "outsouringCostUnfinished": {
            "type": "number"
          },
          "outsouringCostFinished": {
            "type": "number"
          },
          "numberPrice": {
            "type": "number"
          },
          "numberCostUnfinished": {
            "type": "number"
          },
          "numberCostFinished": {
            "type": "number"
          },
          "timePrice": {
            "type": "number"
          },
          "timeCostUnfinished": {
            "type": "number"
          },
          "timeCostFinished": {
            "type": "number"
          },
          "uvPrice": {
            "type": "number"
          },
          "uvCostUnfinished": {
            "type": "number"
          },
          "uvCostFinished": {
            "type": "number"
          },
          "otherPrice": {
            "type": "number"
          },
          "otherCostUnfinished": {
            "type": "number"
          },
          "otherCostFinished": {
            "type": "number"
          },
          "totalCostUnfinished": {
            "type": "number"
          },
          "totalCostFinished": {
            "type": "number"
          },
          "totalCostMonth": {
            "type": "number"
          },
          "totalCost": {
            "type": "number"
          },
          "totalPriceMonth": {
            "type": "number"
          },
          "totalPrice": {
            "type": "number"
          },
          "remark": {
            "type": "string",
            "format": "date-time"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "typeLocationId": {
            "type": "string"
          },
          "patchPrice": {
            "type": "number"
          },
          "patchCostUnfinished": {
            "type": "number"
          },
          "patchCostFinished": {
            "type": "number"
          }
        },
        "required": [
          "year",
          "month"
        ],
        "additionalProperties": false
      },
      "NewCostRecord": {
        "title": "NewCostRecord",
        "type": "object",
        "description": "(tsType: CostRecord, schemaOptions: { title: 'NewCostRecord' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "year": {
            "type": "number"
          },
          "month": {
            "type": "number"
          },
          "demandId": {
            "type": "string"
          },
          "customerId": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "isPlanned": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "unfinishedOperationId": {
            "type": "string"
          },
          "unfinishedLocationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "plannedQuantity": {
            "type": "number"
          },
          "reportedQuantityYazhu": {
            "type": "number"
          },
          "unfinishedQuantity": {
            "type": "number"
          },
          "finishedQuantityTotal": {
            "type": "number"
          },
          "finishedQuantityMonth": {
            "type": "number"
          },
          "materialQuantityManufacturing": {
            "type": "number"
          },
          "materialQuantityOutsouring": {
            "type": "number"
          },
          "materialPriceManufacturing": {
            "type": "number"
          },
          "materialPriceOutsouring": {
            "type": "number"
          },
          "materialCostUnfinished": {
            "type": "number"
          },
          "materialCostFinished": {
            "type": "number"
          },
          "materialReceiveOperationId": {
            "type": "number"
          },
          "materialReceiveLocationId": {
            "type": "number"
          },
          "outsouringPrice": {
            "type": "number"
          },
          "outsouringCostUnfinished": {
            "type": "number"
          },
          "outsouringCostFinished": {
            "type": "number"
          },
          "numberPrice": {
            "type": "number"
          },
          "numberCostUnfinished": {
            "type": "number"
          },
          "numberCostFinished": {
            "type": "number"
          },
          "timePrice": {
            "type": "number"
          },
          "timeCostUnfinished": {
            "type": "number"
          },
          "timeCostFinished": {
            "type": "number"
          },
          "uvPrice": {
            "type": "number"
          },
          "uvCostUnfinished": {
            "type": "number"
          },
          "uvCostFinished": {
            "type": "number"
          },
          "otherPrice": {
            "type": "number"
          },
          "otherCostUnfinished": {
            "type": "number"
          },
          "otherCostFinished": {
            "type": "number"
          },
          "totalCostUnfinished": {
            "type": "number"
          },
          "totalCostFinished": {
            "type": "number"
          },
          "totalCostMonth": {
            "type": "number"
          },
          "totalCost": {
            "type": "number"
          },
          "totalPriceMonth": {
            "type": "number"
          },
          "totalPrice": {
            "type": "number"
          },
          "remark": {
            "type": "string",
            "format": "date-time"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "typeLocationId": {
            "type": "string"
          },
          "patchPrice": {
            "type": "number"
          },
          "patchCostUnfinished": {
            "type": "number"
          },
          "patchCostFinished": {
            "type": "number"
          }
        },
        "required": [
          "year",
          "month"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CostRecord"
      },
      "CostRecordWithRelations": {
        "title": "CostRecordWithRelations",
        "type": "object",
        "description": "(tsType: CostRecordWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "year": {
            "type": "number"
          },
          "month": {
            "type": "number"
          },
          "demandId": {
            "type": "string"
          },
          "customerId": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "isPlanned": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "unfinishedOperationId": {
            "type": "string"
          },
          "unfinishedLocationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "plannedQuantity": {
            "type": "number"
          },
          "reportedQuantityYazhu": {
            "type": "number"
          },
          "unfinishedQuantity": {
            "type": "number"
          },
          "finishedQuantityTotal": {
            "type": "number"
          },
          "finishedQuantityMonth": {
            "type": "number"
          },
          "materialQuantityManufacturing": {
            "type": "number"
          },
          "materialQuantityOutsouring": {
            "type": "number"
          },
          "materialPriceManufacturing": {
            "type": "number"
          },
          "materialPriceOutsouring": {
            "type": "number"
          },
          "materialCostUnfinished": {
            "type": "number"
          },
          "materialCostFinished": {
            "type": "number"
          },
          "materialReceiveOperationId": {
            "type": "number"
          },
          "materialReceiveLocationId": {
            "type": "number"
          },
          "outsouringPrice": {
            "type": "number"
          },
          "outsouringCostUnfinished": {
            "type": "number"
          },
          "outsouringCostFinished": {
            "type": "number"
          },
          "numberPrice": {
            "type": "number"
          },
          "numberCostUnfinished": {
            "type": "number"
          },
          "numberCostFinished": {
            "type": "number"
          },
          "timePrice": {
            "type": "number"
          },
          "timeCostUnfinished": {
            "type": "number"
          },
          "timeCostFinished": {
            "type": "number"
          },
          "uvPrice": {
            "type": "number"
          },
          "uvCostUnfinished": {
            "type": "number"
          },
          "uvCostFinished": {
            "type": "number"
          },
          "otherPrice": {
            "type": "number"
          },
          "otherCostUnfinished": {
            "type": "number"
          },
          "otherCostFinished": {
            "type": "number"
          },
          "totalCostUnfinished": {
            "type": "number"
          },
          "totalCostFinished": {
            "type": "number"
          },
          "totalCostMonth": {
            "type": "number"
          },
          "totalCost": {
            "type": "number"
          },
          "totalPriceMonth": {
            "type": "number"
          },
          "totalPrice": {
            "type": "number"
          },
          "remark": {
            "type": "string",
            "format": "date-time"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "typeLocationId": {
            "type": "string"
          },
          "patchPrice": {
            "type": "number"
          },
          "patchCostUnfinished": {
            "type": "number"
          },
          "patchCostFinished": {
            "type": "number"
          }
        },
        "required": [
          "year",
          "month"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CostRecordWithRelations"
      },
      "CostRecordPartial": {
        "title": "CostRecordPartial",
        "type": "object",
        "description": "(tsType: Partial<CostRecord>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "year": {
            "type": "number"
          },
          "month": {
            "type": "number"
          },
          "demandId": {
            "type": "string"
          },
          "customerId": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "isPlanned": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "unfinishedOperationId": {
            "type": "string"
          },
          "unfinishedLocationId": {
            "type": "string"
          },
          "itemId": {
            "type": "string"
          },
          "plannedQuantity": {
            "type": "number"
          },
          "reportedQuantityYazhu": {
            "type": "number"
          },
          "unfinishedQuantity": {
            "type": "number"
          },
          "finishedQuantityTotal": {
            "type": "number"
          },
          "finishedQuantityMonth": {
            "type": "number"
          },
          "materialQuantityManufacturing": {
            "type": "number"
          },
          "materialQuantityOutsouring": {
            "type": "number"
          },
          "materialPriceManufacturing": {
            "type": "number"
          },
          "materialPriceOutsouring": {
            "type": "number"
          },
          "materialCostUnfinished": {
            "type": "number"
          },
          "materialCostFinished": {
            "type": "number"
          },
          "materialReceiveOperationId": {
            "type": "number"
          },
          "materialReceiveLocationId": {
            "type": "number"
          },
          "outsouringPrice": {
            "type": "number"
          },
          "outsouringCostUnfinished": {
            "type": "number"
          },
          "outsouringCostFinished": {
            "type": "number"
          },
          "numberPrice": {
            "type": "number"
          },
          "numberCostUnfinished": {
            "type": "number"
          },
          "numberCostFinished": {
            "type": "number"
          },
          "timePrice": {
            "type": "number"
          },
          "timeCostUnfinished": {
            "type": "number"
          },
          "timeCostFinished": {
            "type": "number"
          },
          "uvPrice": {
            "type": "number"
          },
          "uvCostUnfinished": {
            "type": "number"
          },
          "uvCostFinished": {
            "type": "number"
          },
          "otherPrice": {
            "type": "number"
          },
          "otherCostUnfinished": {
            "type": "number"
          },
          "otherCostFinished": {
            "type": "number"
          },
          "totalCostUnfinished": {
            "type": "number"
          },
          "totalCostFinished": {
            "type": "number"
          },
          "totalCostMonth": {
            "type": "number"
          },
          "totalCost": {
            "type": "number"
          },
          "totalPriceMonth": {
            "type": "number"
          },
          "totalPrice": {
            "type": "number"
          },
          "remark": {
            "type": "string",
            "format": "date-time"
          },
          "modifyDate": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "typeLocationId": {
            "type": "string"
          },
          "patchPrice": {
            "type": "number"
          },
          "patchCostUnfinished": {
            "type": "number"
          },
          "patchCostFinished": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CostRecord>"
      },
      "CostPatch": {
        "title": "CostPatch",
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "cost": {
            "type": "number",
            "nullable": true
          },
          "type": {
            "type": "string",
            "nullable": true
          },
          "remark": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "year": {
            "type": "number",
            "nullable": true
          },
          "month": {
            "type": "number",
            "nullable": true
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false
      },
      "NewCostPatch": {
        "title": "NewCostPatch",
        "type": "object",
        "description": "(tsType: CostPatch, schemaOptions: { title: 'NewCostPatch' })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "cost": {
            "type": "number",
            "nullable": true
          },
          "type": {
            "type": "string",
            "nullable": true
          },
          "remark": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "year": {
            "type": "number",
            "nullable": true
          },
          "month": {
            "type": "number",
            "nullable": true
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CostPatch"
      },
      "CostPatchWithRelations": {
        "title": "CostPatchWithRelations",
        "type": "object",
        "description": "(tsType: CostPatchWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "cost": {
            "type": "number",
            "nullable": true
          },
          "type": {
            "type": "string",
            "nullable": true
          },
          "remark": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "year": {
            "type": "number",
            "nullable": true
          },
          "month": {
            "type": "number",
            "nullable": true
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "id"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CostPatchWithRelations"
      },
      "CostPatchPartial": {
        "title": "CostPatchPartial",
        "type": "object",
        "description": "(tsType: Partial<CostPatch>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number",
            "nullable": false
          },
          "cost": {
            "type": "number",
            "nullable": true
          },
          "type": {
            "type": "string",
            "nullable": true
          },
          "remark": {
            "type": "string",
            "nullable": true
          },
          "demandId": {
            "type": "string",
            "nullable": true
          },
          "year": {
            "type": "number",
            "nullable": true
          },
          "month": {
            "type": "number",
            "nullable": true
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "createDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CostPatch>"
      },
      "CostOther": {
        "title": "CostOther",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "year": {
            "type": "number"
          },
          "month": {
            "type": "number"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "voucherId": {
            "type": "number"
          },
          "voucherEntryId": {
            "type": "number"
          }
        },
        "required": [
          "locationId",
          "year",
          "month"
        ],
        "additionalProperties": false
      },
      "NewCostOther": {
        "title": "NewCostOther",
        "type": "object",
        "description": "(tsType: CostOther, schemaOptions: { title: 'NewCostOther' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "year": {
            "type": "number"
          },
          "month": {
            "type": "number"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "voucherId": {
            "type": "number"
          },
          "voucherEntryId": {
            "type": "number"
          }
        },
        "required": [
          "locationId",
          "year",
          "month"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CostOther"
      },
      "CostOtherWithRelations": {
        "title": "CostOtherWithRelations",
        "type": "object",
        "description": "(tsType: CostOtherWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "year": {
            "type": "number"
          },
          "month": {
            "type": "number"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "voucherId": {
            "type": "number"
          },
          "voucherEntryId": {
            "type": "number"
          }
        },
        "required": [
          "locationId",
          "year",
          "month"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CostOtherWithRelations"
      },
      "CostOtherPartial": {
        "title": "CostOtherPartial",
        "type": "object",
        "description": "(tsType: Partial<CostOther>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "cost": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "year": {
            "type": "number"
          },
          "month": {
            "type": "number"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "voucherId": {
            "type": "number"
          },
          "voucherEntryId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CostOther>"
      },
      "CommonUser": {
        "title": "CommonUser",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "password": {
            "type": "string"
          },
          "lastLogin": {
            "type": "string",
            "format": "date-time"
          },
          "isSuperuser": {
            "type": "boolean"
          },
          "username": {
            "type": "string"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "isStaff": {
            "type": "boolean"
          },
          "isActive": {
            "type": "boolean"
          },
          "dateJoined": {
            "type": "string",
            "format": "date-time"
          },
          "language": {
            "type": "string"
          },
          "theme": {
            "type": "string"
          },
          "pagesize": {
            "type": "number"
          },
          "horizonbuckets": {
            "type": "string"
          },
          "horizonstart": {
            "type": "string",
            "format": "date-time"
          },
          "horizonend": {
            "type": "string",
            "format": "date-time"
          },
          "horizontype": {
            "type": "boolean"
          },
          "horizonlength": {
            "type": "number"
          },
          "horizonunit": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "avatar": {
            "type": "string"
          },
          "horizonbefore": {
            "type": "number"
          },
          "defaultScenario": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "allowPda": {
            "type": "boolean"
          },
          "locationList": {
            "type": "string"
          },
          "resourceList": {
            "type": "string"
          }
        },
        "required": [
          "password",
          "isSuperuser",
          "username",
          "firstName",
          "lastName",
          "email",
          "isStaff",
          "isActive",
          "dateJoined",
          "language",
          "theme",
          "pagesize",
          "horizontype",
          "allowPda"
        ],
        "additionalProperties": false
      },
      "NewCommonUser": {
        "title": "NewCommonUser",
        "type": "object",
        "description": "(tsType: CommonUser, schemaOptions: { title: 'NewCommonUser' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "password": {
            "type": "string"
          },
          "lastLogin": {
            "type": "string",
            "format": "date-time"
          },
          "isSuperuser": {
            "type": "boolean"
          },
          "username": {
            "type": "string"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "isStaff": {
            "type": "boolean"
          },
          "isActive": {
            "type": "boolean"
          },
          "dateJoined": {
            "type": "string",
            "format": "date-time"
          },
          "language": {
            "type": "string"
          },
          "theme": {
            "type": "string"
          },
          "pagesize": {
            "type": "number"
          },
          "horizonbuckets": {
            "type": "string"
          },
          "horizonstart": {
            "type": "string",
            "format": "date-time"
          },
          "horizonend": {
            "type": "string",
            "format": "date-time"
          },
          "horizontype": {
            "type": "boolean"
          },
          "horizonlength": {
            "type": "number"
          },
          "horizonunit": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "avatar": {
            "type": "string"
          },
          "horizonbefore": {
            "type": "number"
          },
          "defaultScenario": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "allowPda": {
            "type": "boolean"
          },
          "locationList": {
            "type": "string"
          },
          "resourceList": {
            "type": "string"
          }
        },
        "required": [
          "password",
          "isSuperuser",
          "username",
          "firstName",
          "lastName",
          "email",
          "isStaff",
          "isActive",
          "dateJoined",
          "language",
          "theme",
          "pagesize",
          "horizontype",
          "allowPda"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonUser"
      },
      "CommonUserWithRelations": {
        "title": "CommonUserWithRelations",
        "type": "object",
        "description": "(tsType: CommonUserWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "password": {
            "type": "string"
          },
          "lastLogin": {
            "type": "string",
            "format": "date-time"
          },
          "isSuperuser": {
            "type": "boolean"
          },
          "username": {
            "type": "string"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "isStaff": {
            "type": "boolean"
          },
          "isActive": {
            "type": "boolean"
          },
          "dateJoined": {
            "type": "string",
            "format": "date-time"
          },
          "language": {
            "type": "string"
          },
          "theme": {
            "type": "string"
          },
          "pagesize": {
            "type": "number"
          },
          "horizonbuckets": {
            "type": "string"
          },
          "horizonstart": {
            "type": "string",
            "format": "date-time"
          },
          "horizonend": {
            "type": "string",
            "format": "date-time"
          },
          "horizontype": {
            "type": "boolean"
          },
          "horizonlength": {
            "type": "number"
          },
          "horizonunit": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "avatar": {
            "type": "string"
          },
          "horizonbefore": {
            "type": "number"
          },
          "defaultScenario": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "allowPda": {
            "type": "boolean"
          },
          "locationList": {
            "type": "string"
          },
          "resourceList": {
            "type": "string"
          }
        },
        "required": [
          "password",
          "isSuperuser",
          "username",
          "firstName",
          "lastName",
          "email",
          "isStaff",
          "isActive",
          "dateJoined",
          "language",
          "theme",
          "pagesize",
          "horizontype",
          "allowPda"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonUserWithRelations"
      },
      "CommonUserPartial": {
        "title": "CommonUserPartial",
        "type": "object",
        "description": "(tsType: Partial<CommonUser>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "password": {
            "type": "string"
          },
          "lastLogin": {
            "type": "string",
            "format": "date-time"
          },
          "isSuperuser": {
            "type": "boolean"
          },
          "username": {
            "type": "string"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "isStaff": {
            "type": "boolean"
          },
          "isActive": {
            "type": "boolean"
          },
          "dateJoined": {
            "type": "string",
            "format": "date-time"
          },
          "language": {
            "type": "string"
          },
          "theme": {
            "type": "string"
          },
          "pagesize": {
            "type": "number"
          },
          "horizonbuckets": {
            "type": "string"
          },
          "horizonstart": {
            "type": "string",
            "format": "date-time"
          },
          "horizonend": {
            "type": "string",
            "format": "date-time"
          },
          "horizontype": {
            "type": "boolean"
          },
          "horizonlength": {
            "type": "number"
          },
          "horizonunit": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "avatar": {
            "type": "string"
          },
          "horizonbefore": {
            "type": "number"
          },
          "defaultScenario": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "resourceId": {
            "type": "string"
          },
          "allowPda": {
            "type": "boolean"
          },
          "locationList": {
            "type": "string"
          },
          "resourceList": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonUser>"
      },
      "CommonUserUserPermissions": {
        "title": "CommonUserUserPermissions",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "permissionId": {
            "type": "number"
          }
        },
        "required": [
          "userId",
          "permissionId"
        ],
        "additionalProperties": false
      },
      "NewCommonUserUserPermissions": {
        "title": "NewCommonUserUserPermissions",
        "type": "object",
        "description": "(tsType: CommonUserUserPermissions, schemaOptions: { title: 'NewCommonUserUserPermissions' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "permissionId": {
            "type": "number"
          }
        },
        "required": [
          "userId",
          "permissionId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonUserUserPermissions"
      },
      "CommonUserUserPermissionsWithRelations": {
        "title": "CommonUserUserPermissionsWithRelations",
        "type": "object",
        "description": "(tsType: CommonUserUserPermissionsWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "permissionId": {
            "type": "number"
          }
        },
        "required": [
          "userId",
          "permissionId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonUserUserPermissionsWithRelations"
      },
      "CommonUserUserPermissionsPartial": {
        "title": "CommonUserUserPermissionsPartial",
        "type": "object",
        "description": "(tsType: Partial<CommonUserUserPermissions>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "permissionId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonUserUserPermissions>"
      },
      "CommonUserGroups": {
        "title": "CommonUserGroups",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "groupId": {
            "type": "number"
          }
        },
        "required": [
          "userId",
          "groupId"
        ],
        "additionalProperties": false
      },
      "NewCommonUserGroups": {
        "title": "NewCommonUserGroups",
        "type": "object",
        "description": "(tsType: CommonUserGroups, schemaOptions: { title: 'NewCommonUserGroups' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "groupId": {
            "type": "number"
          }
        },
        "required": [
          "userId",
          "groupId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonUserGroups"
      },
      "CommonUserGroupsWithRelations": {
        "title": "CommonUserGroupsWithRelations",
        "type": "object",
        "description": "(tsType: CommonUserGroupsWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "groupId": {
            "type": "number"
          }
        },
        "required": [
          "userId",
          "groupId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonUserGroupsWithRelations"
      },
      "CommonUserGroupsPartial": {
        "title": "CommonUserGroupsPartial",
        "type": "object",
        "description": "(tsType: Partial<CommonUserGroups>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "groupId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonUserGroups>"
      },
      "CommonScenario": {
        "title": "CommonScenario",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "lastrefresh": {
            "type": "string",
            "format": "date-time"
          },
          "helpUrl": {
            "type": "string"
          }
        },
        "required": [
          "status"
        ],
        "additionalProperties": false
      },
      "NewCommonScenario": {
        "title": "NewCommonScenario",
        "type": "object",
        "description": "(tsType: CommonScenario, schemaOptions: { title: 'NewCommonScenario' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "lastrefresh": {
            "type": "string",
            "format": "date-time"
          },
          "helpUrl": {
            "type": "string"
          }
        },
        "required": [
          "status"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonScenario"
      },
      "CommonScenarioWithRelations": {
        "title": "CommonScenarioWithRelations",
        "type": "object",
        "description": "(tsType: CommonScenarioWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "lastrefresh": {
            "type": "string",
            "format": "date-time"
          },
          "helpUrl": {
            "type": "string"
          }
        },
        "required": [
          "status"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonScenarioWithRelations"
      },
      "CommonScenarioPartial": {
        "title": "CommonScenarioPartial",
        "type": "object",
        "description": "(tsType: Partial<CommonScenario>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "lastrefresh": {
            "type": "string",
            "format": "date-time"
          },
          "helpUrl": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonScenario>"
      },
      "CommonPreference": {
        "title": "CommonPreference",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          }
        },
        "required": [
          "property",
          "value"
        ],
        "additionalProperties": false
      },
      "NewCommonPreference": {
        "title": "NewCommonPreference",
        "type": "object",
        "description": "(tsType: CommonPreference, schemaOptions: { title: 'NewCommonPreference' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          }
        },
        "required": [
          "property",
          "value"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonPreference"
      },
      "CommonPreferenceWithRelations": {
        "title": "CommonPreferenceWithRelations",
        "type": "object",
        "description": "(tsType: CommonPreferenceWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          }
        },
        "required": [
          "property",
          "value"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonPreferenceWithRelations"
      },
      "CommonPreferencePartial": {
        "title": "CommonPreferencePartial",
        "type": "object",
        "description": "(tsType: Partial<CommonPreference>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "property": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonPreference>"
      },
      "CommonParameter": {
        "title": "CommonParameter",
        "type": "object",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "description": {
            "type": "string"
          }
        },
        "required": [
          "lastmodified"
        ],
        "additionalProperties": false
      },
      "NewCommonParameter": {
        "title": "NewCommonParameter",
        "type": "object",
        "description": "(tsType: CommonParameter, schemaOptions: { title: 'NewCommonParameter' })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "description": {
            "type": "string"
          }
        },
        "required": [
          "lastmodified"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonParameter"
      },
      "CommonParameterWithRelations": {
        "title": "CommonParameterWithRelations",
        "type": "object",
        "description": "(tsType: CommonParameterWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "description": {
            "type": "string"
          }
        },
        "required": [
          "lastmodified"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonParameterWithRelations"
      },
      "CommonParameterPartial": {
        "title": "CommonParameterPartial",
        "type": "object",
        "description": "(tsType: Partial<CommonParameter>, schemaOptions: { partial: true })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          },
          "description": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonParameter>"
      },
      "CommonNotification": {
        "title": "CommonNotification",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "commentId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "followerId": {
            "type": "number"
          }
        },
        "required": [
          "status",
          "type",
          "userId"
        ],
        "additionalProperties": false
      },
      "NewCommonNotification": {
        "title": "NewCommonNotification",
        "type": "object",
        "description": "(tsType: CommonNotification, schemaOptions: { title: 'NewCommonNotification' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "commentId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "followerId": {
            "type": "number"
          }
        },
        "required": [
          "status",
          "type",
          "userId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonNotification"
      },
      "CommonNotificationWithRelations": {
        "title": "CommonNotificationWithRelations",
        "type": "object",
        "description": "(tsType: CommonNotificationWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "commentId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "followerId": {
            "type": "number"
          }
        },
        "required": [
          "status",
          "type",
          "userId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonNotificationWithRelations"
      },
      "CommonNotificationPartial": {
        "title": "CommonNotificationPartial",
        "type": "object",
        "description": "(tsType: Partial<CommonNotification>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "commentId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "followerId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonNotification>"
      },
      "CommonFollower": {
        "title": "CommonFollower",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "objectPk": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "args": {
            "type": "string"
          }
        },
        "required": [
          "type",
          "contentTypeId",
          "userId"
        ],
        "additionalProperties": false
      },
      "NewCommonFollower": {
        "title": "NewCommonFollower",
        "type": "object",
        "description": "(tsType: CommonFollower, schemaOptions: { title: 'NewCommonFollower' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "objectPk": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "args": {
            "type": "string"
          }
        },
        "required": [
          "type",
          "contentTypeId",
          "userId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonFollower"
      },
      "CommonFollowerWithRelations": {
        "title": "CommonFollowerWithRelations",
        "type": "object",
        "description": "(tsType: CommonFollowerWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "objectPk": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "args": {
            "type": "string"
          }
        },
        "required": [
          "type",
          "contentTypeId",
          "userId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonFollowerWithRelations"
      },
      "CommonFollowerPartial": {
        "title": "CommonFollowerPartial",
        "type": "object",
        "description": "(tsType: Partial<CommonFollower>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "objectPk": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "args": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonFollower>"
      },
      "CommonComment": {
        "title": "CommonComment",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "objectPk": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "attachment": {
            "type": "string"
          },
          "objectRepr": {
            "type": "string"
          },
          "processed": {
            "type": "boolean"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "objectPk",
          "comment",
          "lastmodified",
          "contentTypeId",
          "objectRepr",
          "processed",
          "type"
        ],
        "additionalProperties": false
      },
      "NewCommonComment": {
        "title": "NewCommonComment",
        "type": "object",
        "description": "(tsType: CommonComment, schemaOptions: { title: 'NewCommonComment' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "objectPk": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "attachment": {
            "type": "string"
          },
          "objectRepr": {
            "type": "string"
          },
          "processed": {
            "type": "boolean"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "objectPk",
          "comment",
          "lastmodified",
          "contentTypeId",
          "objectRepr",
          "processed",
          "type"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonComment"
      },
      "CommonCommentWithRelations": {
        "title": "CommonCommentWithRelations",
        "type": "object",
        "description": "(tsType: CommonCommentWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "objectPk": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "attachment": {
            "type": "string"
          },
          "objectRepr": {
            "type": "string"
          },
          "processed": {
            "type": "boolean"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "objectPk",
          "comment",
          "lastmodified",
          "contentTypeId",
          "objectRepr",
          "processed",
          "type"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonCommentWithRelations"
      },
      "CommonCommentPartial": {
        "title": "CommonCommentPartial",
        "type": "object",
        "description": "(tsType: Partial<CommonComment>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "objectPk": {
            "type": "string"
          },
          "comment": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "contentTypeId": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "attachment": {
            "type": "string"
          },
          "objectRepr": {
            "type": "string"
          },
          "processed": {
            "type": "boolean"
          },
          "type": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonComment>"
      },
      "CommonBucketdetail": {
        "title": "CommonBucketdetail",
        "type": "object",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "bucketId": {
            "type": "string"
          }
        },
        "required": [
          "lastmodified",
          "name",
          "startdate",
          "enddate",
          "bucketId"
        ],
        "additionalProperties": false
      },
      "NewCommonBucketdetail": {
        "title": "NewCommonBucketdetail",
        "type": "object",
        "description": "(tsType: CommonBucketdetail, schemaOptions: { title: 'NewCommonBucketdetail' })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "bucketId": {
            "type": "string"
          }
        },
        "required": [
          "lastmodified",
          "name",
          "startdate",
          "enddate",
          "bucketId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonBucketdetail"
      },
      "CommonBucketdetailWithRelations": {
        "title": "CommonBucketdetailWithRelations",
        "type": "object",
        "description": "(tsType: CommonBucketdetailWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "bucketId": {
            "type": "string"
          }
        },
        "required": [
          "lastmodified",
          "name",
          "startdate",
          "enddate",
          "bucketId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonBucketdetailWithRelations"
      },
      "CommonBucketdetailPartial": {
        "title": "CommonBucketdetailPartial",
        "type": "object",
        "description": "(tsType: Partial<CommonBucketdetail>, schemaOptions: { partial: true })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "bucketId": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonBucketdetail>"
      },
      "CommonBucket": {
        "title": "CommonBucket",
        "type": "object",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "level": {
            "type": "number"
          }
        },
        "required": [
          "lastmodified",
          "level"
        ],
        "additionalProperties": false
      },
      "NewCommonBucket": {
        "title": "NewCommonBucket",
        "type": "object",
        "description": "(tsType: CommonBucket, schemaOptions: { title: 'NewCommonBucket' })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "level": {
            "type": "number"
          }
        },
        "required": [
          "lastmodified",
          "level"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonBucket"
      },
      "CommonBucketWithRelations": {
        "title": "CommonBucketWithRelations",
        "type": "object",
        "description": "(tsType: CommonBucketWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "level": {
            "type": "number"
          }
        },
        "required": [
          "lastmodified",
          "level"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonBucketWithRelations"
      },
      "CommonBucketPartial": {
        "title": "CommonBucketPartial",
        "type": "object",
        "description": "(tsType: Partial<CommonBucket>, schemaOptions: { partial: true })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "level": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonBucket>"
      },
      "CommonAttribute": {
        "title": "CommonAttribute",
        "type": "object",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "label": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "editable": {
            "type": "boolean"
          },
          "initiallyHidden": {
            "type": "boolean"
          },
          "model": {
            "type": "string"
          }
        },
        "required": [
          "lastmodified",
          "name",
          "label",
          "type",
          "editable",
          "initiallyHidden",
          "model"
        ],
        "additionalProperties": false
      },
      "NewCommonAttribute": {
        "title": "NewCommonAttribute",
        "type": "object",
        "description": "(tsType: CommonAttribute, schemaOptions: { title: 'NewCommonAttribute' })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "label": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "editable": {
            "type": "boolean"
          },
          "initiallyHidden": {
            "type": "boolean"
          },
          "model": {
            "type": "string"
          }
        },
        "required": [
          "lastmodified",
          "name",
          "label",
          "type",
          "editable",
          "initiallyHidden",
          "model"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonAttribute"
      },
      "CommonAttributeWithRelations": {
        "title": "CommonAttributeWithRelations",
        "type": "object",
        "description": "(tsType: CommonAttributeWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "label": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "editable": {
            "type": "boolean"
          },
          "initiallyHidden": {
            "type": "boolean"
          },
          "model": {
            "type": "string"
          }
        },
        "required": [
          "lastmodified",
          "name",
          "label",
          "type",
          "editable",
          "initiallyHidden",
          "model"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CommonAttributeWithRelations"
      },
      "CommonAttributePartial": {
        "title": "CommonAttributePartial",
        "type": "object",
        "description": "(tsType: Partial<CommonAttribute>, schemaOptions: { partial: true })",
        "properties": {
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "label": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "editable": {
            "type": "boolean"
          },
          "initiallyHidden": {
            "type": "boolean"
          },
          "model": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<CommonAttribute>"
      },
      "Calendarbucket": {
        "title": "Calendarbucket",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "calendarId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "value": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "monday": {
            "type": "boolean"
          },
          "tuesday": {
            "type": "boolean"
          },
          "wednesday": {
            "type": "boolean"
          },
          "thursday": {
            "type": "boolean"
          },
          "friday": {
            "type": "boolean"
          },
          "saturday": {
            "type": "boolean"
          },
          "sunday": {
            "type": "boolean"
          },
          "starttime": {
            "type": "string",
            "format": "date-time"
          },
          "endtime": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "calendarId",
          "value",
          "monday",
          "tuesday",
          "wednesday",
          "thursday",
          "friday",
          "saturday",
          "sunday"
        ],
        "additionalProperties": false
      },
      "NewCalendarbucket": {
        "title": "NewCalendarbucket",
        "type": "object",
        "description": "(tsType: Calendarbucket, schemaOptions: { title: 'NewCalendarbucket' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "calendarId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "value": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "monday": {
            "type": "boolean"
          },
          "tuesday": {
            "type": "boolean"
          },
          "wednesday": {
            "type": "boolean"
          },
          "thursday": {
            "type": "boolean"
          },
          "friday": {
            "type": "boolean"
          },
          "saturday": {
            "type": "boolean"
          },
          "sunday": {
            "type": "boolean"
          },
          "starttime": {
            "type": "string",
            "format": "date-time"
          },
          "endtime": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "calendarId",
          "value",
          "monday",
          "tuesday",
          "wednesday",
          "thursday",
          "friday",
          "saturday",
          "sunday"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Calendarbucket"
      },
      "CalendarbucketWithRelations": {
        "title": "CalendarbucketWithRelations",
        "type": "object",
        "description": "(tsType: CalendarbucketWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "calendarId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "value": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "monday": {
            "type": "boolean"
          },
          "tuesday": {
            "type": "boolean"
          },
          "wednesday": {
            "type": "boolean"
          },
          "thursday": {
            "type": "boolean"
          },
          "friday": {
            "type": "boolean"
          },
          "saturday": {
            "type": "boolean"
          },
          "sunday": {
            "type": "boolean"
          },
          "starttime": {
            "type": "string",
            "format": "date-time"
          },
          "endtime": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "calendarId",
          "value",
          "monday",
          "tuesday",
          "wednesday",
          "thursday",
          "friday",
          "saturday",
          "sunday"
        ],
        "additionalProperties": false,
        "x-typescript-type": "CalendarbucketWithRelations"
      },
      "CalendarbucketPartial": {
        "title": "CalendarbucketPartial",
        "type": "object",
        "description": "(tsType: Partial<Calendarbucket>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "calendarId": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "value": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "monday": {
            "type": "boolean"
          },
          "tuesday": {
            "type": "boolean"
          },
          "wednesday": {
            "type": "boolean"
          },
          "thursday": {
            "type": "boolean"
          },
          "friday": {
            "type": "boolean"
          },
          "saturday": {
            "type": "boolean"
          },
          "sunday": {
            "type": "boolean"
          },
          "starttime": {
            "type": "string",
            "format": "date-time"
          },
          "endtime": {
            "type": "string",
            "format": "date-time"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Calendarbucket>"
      },
      "Calendar": {
        "title": "Calendar",
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "defaultvalue": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "NewCalendar": {
        "title": "NewCalendar",
        "type": "object",
        "description": "(tsType: Calendar, schemaOptions: { title: 'NewCalendar' })",
        "properties": {
          "name": {
            "type": "string"
          },
          "defaultvalue": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Calendar"
      },
      "CalendarWithRelations": {
        "title": "CalendarWithRelations",
        "type": "object",
        "description": "(tsType: CalendarWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "defaultvalue": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "CalendarWithRelations"
      },
      "CalendarPartial": {
        "title": "CalendarPartial",
        "type": "object",
        "description": "(tsType: Partial<Calendar>, schemaOptions: { partial: true })",
        "properties": {
          "name": {
            "type": "string"
          },
          "defaultvalue": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "fullName": {
            "type": "string"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Calendar>"
      },
      "Buffer": {
        "title": "Buffer",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "minimum": {
            "type": "number"
          },
          "minimumCalendarId": {
            "type": "string"
          },
          "minInterval": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batch": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "realtimeOnhand": {
            "type": "number"
          },
          "lastMO": {
            "type": "number"
          },
          "lastPO": {
            "type": "number"
          },
          "lastDO": {
            "type": "number"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "itemId",
          "locationId"
        ],
        "additionalProperties": false
      },
      "NewBuffer": {
        "title": "NewBuffer",
        "type": "object",
        "description": "(tsType: Buffer, schemaOptions: { title: 'NewBuffer' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "minimum": {
            "type": "number"
          },
          "minimumCalendarId": {
            "type": "string"
          },
          "minInterval": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batch": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "realtimeOnhand": {
            "type": "number"
          },
          "lastMO": {
            "type": "number"
          },
          "lastPO": {
            "type": "number"
          },
          "lastDO": {
            "type": "number"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "itemId",
          "locationId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Buffer"
      },
      "BufferWithRelations": {
        "title": "BufferWithRelations",
        "type": "object",
        "description": "(tsType: BufferWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "minimum": {
            "type": "number"
          },
          "minimumCalendarId": {
            "type": "string"
          },
          "minInterval": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batch": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "realtimeOnhand": {
            "type": "number"
          },
          "lastMO": {
            "type": "number"
          },
          "lastPO": {
            "type": "number"
          },
          "lastDO": {
            "type": "number"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "item": {
            "$ref": "#/components/schemas/Item"
          },
          "foreignKey": {},
          "location": {
            "$ref": "#/components/schemas/Location"
          }
        },
        "required": [
          "itemId",
          "locationId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "BufferWithRelations"
      },
      "BufferPartial": {
        "title": "BufferPartial",
        "type": "object",
        "description": "(tsType: Partial<Buffer>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "itemId": {
            "type": "string"
          },
          "locationId": {
            "type": "string"
          },
          "onhand": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "subcategory": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "minimum": {
            "type": "number"
          },
          "minimumCalendarId": {
            "type": "string"
          },
          "minInterval": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "lastmodified": {
            "type": "string",
            "format": "date-time"
          },
          "batch": {
            "type": "string"
          },
          "property": {
            "type": "string"
          },
          "realtimeOnhand": {
            "type": "number"
          },
          "lastMO": {
            "type": "number"
          },
          "lastPO": {
            "type": "number"
          },
          "lastDO": {
            "type": "number"
          },
          "fullName": {
            "type": "string"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Buffer>"
      },
      "NewBom2": {
        "title": "NewBom2",
        "type": "object",
        "description": "(tsType: Bom2, schemaOptions: { title: 'NewBom2' })",
        "properties": {
          "bomcode": {
            "type": "string"
          },
          "usestatus": {
            "type": "string"
          },
          "bomskip": {
            "type": "string"
          },
          "lastupdateperson": {
            "type": "string"
          },
          "lastupdatedate": {
            "type": "string",
            "format": "date-time"
          },
          "lastusedperson": {
            "type": "string"
          },
          "lastuseddate": {
            "type": "string",
            "format": "date-time"
          },
          "bomentryid": {
            "type": "string"
          },
          "materialtype": {
            "type": "string"
          },
          "marshaltype": {
            "type": "string"
          },
          "stock": {
            "type": "string"
          },
          "spbh": {
            "type": "string"
          },
          "spname": {
            "type": "string"
          },
          "spth": {
            "type": "string"
          },
          "gg": {
            "type": "string"
          },
          "spclass": {
            "type": "string"
          },
          "spquantity": {
            "type": "number"
          },
          "spyield": {
            "type": "number"
          },
          "bjbm": {
            "type": "string"
          },
          "bjname": {
            "type": "string"
          },
          "bjth": {
            "type": "string"
          },
          "bjgg": {
            "type": "string"
          },
          "bjclass": {
            "type": "string"
          },
          "bjquantity": {
            "type": "number"
          },
          "bjunit": {
            "type": "string"
          },
          "bmbm": {
            "type": "string"
          },
          "dwname": {
            "type": "string"
          },
          "zjm": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "gxbm": {
            "type": "string"
          },
          "gxsl": {
            "type": "number"
          },
          "rs": {
            "type": "number"
          },
          "sj": {
            "type": "number"
          },
          "pr": {
            "type": "number"
          },
          "bz": {
            "type": "string"
          },
          "tjbz": {
            "type": "string"
          },
          "mydate": {
            "type": "string",
            "format": "date-time"
          },
          "class": {
            "type": "string"
          },
          "zsj": {
            "type": "number"
          },
          "zpr": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "gap": {
            "type": "string"
          },
          "quantityCheck": {
            "type": "number"
          },
          "xh": {
            "type": "number"
          },
          "woven": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "erpCode": {
            "type": "string"
          },
          "detail": {
            "type": "string"
          },
          "itemNeedleNumber": {
            "type": "number"
          },
          "itemLineLength": {
            "type": "number"
          },
          "itemColor": {
            "type": "string"
          },
          "itemBaseLine": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Bom2"
      },
      "Bom2WithRelations": {
        "title": "Bom2WithRelations",
        "type": "object",
        "description": "(tsType: Bom2WithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "bomcode": {
            "type": "string"
          },
          "usestatus": {
            "type": "string"
          },
          "bomskip": {
            "type": "string"
          },
          "lastupdateperson": {
            "type": "string"
          },
          "lastupdatedate": {
            "type": "string",
            "format": "date-time"
          },
          "lastusedperson": {
            "type": "string"
          },
          "lastuseddate": {
            "type": "string",
            "format": "date-time"
          },
          "bomentryid": {
            "type": "string"
          },
          "materialtype": {
            "type": "string"
          },
          "marshaltype": {
            "type": "string"
          },
          "stock": {
            "type": "string"
          },
          "spbh": {
            "type": "string"
          },
          "spname": {
            "type": "string"
          },
          "spth": {
            "type": "string"
          },
          "gg": {
            "type": "string"
          },
          "spclass": {
            "type": "string"
          },
          "spquantity": {
            "type": "number"
          },
          "spyield": {
            "type": "number"
          },
          "bjbm": {
            "type": "string"
          },
          "bjname": {
            "type": "string"
          },
          "bjth": {
            "type": "string"
          },
          "bjgg": {
            "type": "string"
          },
          "bjclass": {
            "type": "string"
          },
          "bjquantity": {
            "type": "number"
          },
          "bjunit": {
            "type": "string"
          },
          "bmbm": {
            "type": "string"
          },
          "dwname": {
            "type": "string"
          },
          "zjm": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "gxbm": {
            "type": "string"
          },
          "gxsl": {
            "type": "number"
          },
          "rs": {
            "type": "number"
          },
          "sj": {
            "type": "number"
          },
          "pr": {
            "type": "number"
          },
          "bz": {
            "type": "string"
          },
          "tjbz": {
            "type": "string"
          },
          "mydate": {
            "type": "string",
            "format": "date-time"
          },
          "class": {
            "type": "string"
          },
          "zsj": {
            "type": "number"
          },
          "zpr": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "gap": {
            "type": "string"
          },
          "quantityCheck": {
            "type": "number"
          },
          "xh": {
            "type": "number"
          },
          "woven": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "erpCode": {
            "type": "string"
          },
          "detail": {
            "type": "string"
          },
          "itemNeedleNumber": {
            "type": "number"
          },
          "itemLineLength": {
            "type": "number"
          },
          "itemColor": {
            "type": "string"
          },
          "itemBaseLine": {
            "type": "string"
          },
          "item": {
            "$ref": "#/components/schemas/Item"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "Bom2WithRelations"
      },
      "Bom2Partial": {
        "title": "Bom2Partial",
        "type": "object",
        "description": "(tsType: Partial<Bom2>, schemaOptions: { partial: true })",
        "properties": {
          "bomcode": {
            "type": "string"
          },
          "usestatus": {
            "type": "string"
          },
          "bomskip": {
            "type": "string"
          },
          "lastupdateperson": {
            "type": "string"
          },
          "lastupdatedate": {
            "type": "string",
            "format": "date-time"
          },
          "lastusedperson": {
            "type": "string"
          },
          "lastuseddate": {
            "type": "string",
            "format": "date-time"
          },
          "bomentryid": {
            "type": "string"
          },
          "materialtype": {
            "type": "string"
          },
          "marshaltype": {
            "type": "string"
          },
          "stock": {
            "type": "string"
          },
          "spbh": {
            "type": "string"
          },
          "spname": {
            "type": "string"
          },
          "spth": {
            "type": "string"
          },
          "gg": {
            "type": "string"
          },
          "spclass": {
            "type": "string"
          },
          "spquantity": {
            "type": "number"
          },
          "spyield": {
            "type": "number"
          },
          "bjbm": {
            "type": "string"
          },
          "bjname": {
            "type": "string"
          },
          "bjth": {
            "type": "string"
          },
          "bjgg": {
            "type": "string"
          },
          "bjclass": {
            "type": "string"
          },
          "bjquantity": {
            "type": "number"
          },
          "bjunit": {
            "type": "string"
          },
          "bmbm": {
            "type": "string"
          },
          "dwname": {
            "type": "string"
          },
          "zjm": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "gxbm": {
            "type": "string"
          },
          "gxsl": {
            "type": "number"
          },
          "rs": {
            "type": "number"
          },
          "sj": {
            "type": "number"
          },
          "pr": {
            "type": "number"
          },
          "bz": {
            "type": "string"
          },
          "tjbz": {
            "type": "string"
          },
          "mydate": {
            "type": "string",
            "format": "date-time"
          },
          "class": {
            "type": "string"
          },
          "zsj": {
            "type": "number"
          },
          "zpr": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "gap": {
            "type": "string"
          },
          "quantityCheck": {
            "type": "number"
          },
          "xh": {
            "type": "number"
          },
          "woven": {
            "type": "number"
          },
          "type": {
            "type": "string"
          },
          "erpCode": {
            "type": "string"
          },
          "detail": {
            "type": "string"
          },
          "itemNeedleNumber": {
            "type": "number"
          },
          "itemLineLength": {
            "type": "number"
          },
          "itemColor": {
            "type": "string"
          },
          "itemBaseLine": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Bom2>"
      },
      "Bom": {
        "title": "Bom",
        "type": "object",
        "properties": {
          "bomcode": {
            "type": "string"
          },
          "usestatus": {
            "type": "string"
          },
          "bomskip": {
            "type": "string"
          },
          "lastupdateperson": {
            "type": "string"
          },
          "lastupdatedate": {
            "type": "string",
            "format": "date-time"
          },
          "lastusedperson": {
            "type": "string"
          },
          "lastuseddate": {
            "type": "string",
            "format": "date-time"
          },
          "bomentryid": {
            "type": "string"
          },
          "materialtype": {
            "type": "string"
          },
          "marshaltype": {
            "type": "string"
          },
          "stock": {
            "type": "string"
          },
          "spbh": {
            "type": "string"
          },
          "spname": {
            "type": "string"
          },
          "spth": {
            "type": "string"
          },
          "gg": {
            "type": "string"
          },
          "spclass": {
            "type": "string"
          },
          "spquantity": {
            "type": "number"
          },
          "spyield": {
            "type": "number"
          },
          "bjbm": {
            "type": "string"
          },
          "bjname": {
            "type": "string"
          },
          "bjth": {
            "type": "string"
          },
          "bjgg": {
            "type": "string"
          },
          "bjclass": {
            "type": "string"
          },
          "bjquantity": {
            "type": "number"
          },
          "bjunit": {
            "type": "string"
          },
          "bmbm": {
            "type": "string"
          },
          "dwname": {
            "type": "string"
          },
          "zjm": {
            "type": "string"
          },
          "name": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "gxbm": {
            "type": "string"
          },
          "gxsl": {
            "type": "number"
          },
          "rs": {
            "type": "number"
          },
          "sj": {
            "type": "number"
          },
          "pr": {
            "type": "number"
          },
          "bz": {
            "type": "string"
          },
          "tjbz": {
            "type": "string"
          },
          "mydate": {
            "type": "string",
            "format": "date-time"
          },
          "class": {
            "type": "string"
          },
          "zsj": {
            "type": "number"
          },
          "zpr": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "xh": {
            "type": "number"
          },
          "erpCode": {
            "type": "string"
          },
          "gap": {
            "type": "string"
          },
          "quantityCheck": {
            "type": "number"
          },
          "woven": {
            "type": "number"
          },
          "type": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewBom": {
        "title": "NewBom",
        "type": "object",
        "description": "(tsType: Bom, schemaOptions: { title: 'NewBom' })",
        "properties": {
          "bomcode": {
            "type": "string"
          },
          "usestatus": {
            "type": "string"
          },
          "bomskip": {
            "type": "string"
          },
          "lastupdateperson": {
            "type": "string"
          },
          "lastupdatedate": {
            "type": "string",
            "format": "date-time"
          },
          "lastusedperson": {
            "type": "string"
          },
          "lastuseddate": {
            "type": "string",
            "format": "date-time"
          },
          "bomentryid": {
            "type": "string"
          },
          "materialtype": {
            "type": "string"
          },
          "marshaltype": {
            "type": "string"
          },
          "stock": {
            "type": "string"
          },
          "spbh": {
            "type": "string"
          },
          "spname": {
            "type": "string"
          },
          "spth": {
            "type": "string"
          },
          "gg": {
            "type": "string"
          },
          "spclass": {
            "type": "string"
          },
          "spquantity": {
            "type": "number"
          },
          "spyield": {
            "type": "number"
          },
          "bjbm": {
            "type": "string"
          },
          "bjname": {
            "type": "string"
          },
          "bjth": {
            "type": "string"
          },
          "bjgg": {
            "type": "string"
          },
          "bjclass": {
            "type": "string"
          },
          "bjquantity": {
            "type": "number"
          },
          "bjunit": {
            "type": "string"
          },
          "bmbm": {
            "type": "string"
          },
          "dwname": {
            "type": "string"
          },
          "zjm": {
            "type": "string"
          },
          "name": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "gxbm": {
            "type": "string"
          },
          "gxsl": {
            "type": "number"
          },
          "rs": {
            "type": "number"
          },
          "sj": {
            "type": "number"
          },
          "pr": {
            "type": "number"
          },
          "bz": {
            "type": "string"
          },
          "tjbz": {
            "type": "string"
          },
          "mydate": {
            "type": "string",
            "format": "date-time"
          },
          "class": {
            "type": "string"
          },
          "zsj": {
            "type": "number"
          },
          "zpr": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "xh": {
            "type": "number"
          },
          "erpCode": {
            "type": "string"
          },
          "gap": {
            "type": "string"
          },
          "quantityCheck": {
            "type": "number"
          },
          "woven": {
            "type": "number"
          },
          "type": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Bom"
      },
      "BomWithRelations": {
        "title": "BomWithRelations",
        "type": "object",
        "description": "(tsType: BomWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "bomcode": {
            "type": "string"
          },
          "usestatus": {
            "type": "string"
          },
          "bomskip": {
            "type": "string"
          },
          "lastupdateperson": {
            "type": "string"
          },
          "lastupdatedate": {
            "type": "string",
            "format": "date-time"
          },
          "lastusedperson": {
            "type": "string"
          },
          "lastuseddate": {
            "type": "string",
            "format": "date-time"
          },
          "bomentryid": {
            "type": "string"
          },
          "materialtype": {
            "type": "string"
          },
          "marshaltype": {
            "type": "string"
          },
          "stock": {
            "type": "string"
          },
          "spbh": {
            "type": "string"
          },
          "spname": {
            "type": "string"
          },
          "spth": {
            "type": "string"
          },
          "gg": {
            "type": "string"
          },
          "spclass": {
            "type": "string"
          },
          "spquantity": {
            "type": "number"
          },
          "spyield": {
            "type": "number"
          },
          "bjbm": {
            "type": "string"
          },
          "bjname": {
            "type": "string"
          },
          "bjth": {
            "type": "string"
          },
          "bjgg": {
            "type": "string"
          },
          "bjclass": {
            "type": "string"
          },
          "bjquantity": {
            "type": "number"
          },
          "bjunit": {
            "type": "string"
          },
          "bmbm": {
            "type": "string"
          },
          "dwname": {
            "type": "string"
          },
          "zjm": {
            "type": "string"
          },
          "name": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "gxbm": {
            "type": "string"
          },
          "gxsl": {
            "type": "number"
          },
          "rs": {
            "type": "number"
          },
          "sj": {
            "type": "number"
          },
          "pr": {
            "type": "number"
          },
          "bz": {
            "type": "string"
          },
          "tjbz": {
            "type": "string"
          },
          "mydate": {
            "type": "string",
            "format": "date-time"
          },
          "class": {
            "type": "string"
          },
          "zsj": {
            "type": "number"
          },
          "zpr": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "xh": {
            "type": "number"
          },
          "erpCode": {
            "type": "string"
          },
          "gap": {
            "type": "string"
          },
          "quantityCheck": {
            "type": "number"
          },
          "woven": {
            "type": "number"
          },
          "type": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "BomWithRelations"
      },
      "BomPartial": {
        "title": "BomPartial",
        "type": "object",
        "description": "(tsType: Partial<Bom>, schemaOptions: { partial: true })",
        "properties": {
          "bomcode": {
            "type": "string"
          },
          "usestatus": {
            "type": "string"
          },
          "bomskip": {
            "type": "string"
          },
          "lastupdateperson": {
            "type": "string"
          },
          "lastupdatedate": {
            "type": "string",
            "format": "date-time"
          },
          "lastusedperson": {
            "type": "string"
          },
          "lastuseddate": {
            "type": "string",
            "format": "date-time"
          },
          "bomentryid": {
            "type": "string"
          },
          "materialtype": {
            "type": "string"
          },
          "marshaltype": {
            "type": "string"
          },
          "stock": {
            "type": "string"
          },
          "spbh": {
            "type": "string"
          },
          "spname": {
            "type": "string"
          },
          "spth": {
            "type": "string"
          },
          "gg": {
            "type": "string"
          },
          "spclass": {
            "type": "string"
          },
          "spquantity": {
            "type": "number"
          },
          "spyield": {
            "type": "number"
          },
          "bjbm": {
            "type": "string"
          },
          "bjname": {
            "type": "string"
          },
          "bjth": {
            "type": "string"
          },
          "bjgg": {
            "type": "string"
          },
          "bjclass": {
            "type": "string"
          },
          "bjquantity": {
            "type": "number"
          },
          "bjunit": {
            "type": "string"
          },
          "bmbm": {
            "type": "string"
          },
          "dwname": {
            "type": "string"
          },
          "zjm": {
            "type": "string"
          },
          "name": {
            "type": "number"
          },
          "description": {
            "type": "string"
          },
          "gxbm": {
            "type": "string"
          },
          "gxsl": {
            "type": "number"
          },
          "rs": {
            "type": "number"
          },
          "sj": {
            "type": "number"
          },
          "pr": {
            "type": "number"
          },
          "bz": {
            "type": "string"
          },
          "tjbz": {
            "type": "string"
          },
          "mydate": {
            "type": "string",
            "format": "date-time"
          },
          "class": {
            "type": "string"
          },
          "zsj": {
            "type": "number"
          },
          "zpr": {
            "type": "number"
          },
          "isActive": {
            "type": "boolean"
          },
          "createDate": {
            "type": "string",
            "format": "date-time"
          },
          "xh": {
            "type": "number"
          },
          "erpCode": {
            "type": "string"
          },
          "gap": {
            "type": "string"
          },
          "quantityCheck": {
            "type": "number"
          },
          "woven": {
            "type": "number"
          },
          "type": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Bom>"
      },
      "AxOperationplan": {
        "title": "AxOperationplan",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "reference": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "operation": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "itemCost": {
            "type": "number"
          },
          "itemsupplierCost": {
            "type": "number"
          },
          "origin": {
            "type": "string"
          },
          "destination": {
            "type": "string"
          },
          "supplier": {
            "type": "string"
          },
          "location": {
            "type": "string"
          },
          "demand": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "snapshotDateId",
          "reference",
          "type",
          "quantity",
          "item"
        ],
        "additionalProperties": false
      },
      "NewAxOperationplan": {
        "title": "NewAxOperationplan",
        "type": "object",
        "description": "(tsType: AxOperationplan, schemaOptions: { title: 'NewAxOperationplan' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "reference": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "operation": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "itemCost": {
            "type": "number"
          },
          "itemsupplierCost": {
            "type": "number"
          },
          "origin": {
            "type": "string"
          },
          "destination": {
            "type": "string"
          },
          "supplier": {
            "type": "string"
          },
          "location": {
            "type": "string"
          },
          "demand": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "snapshotDateId",
          "reference",
          "type",
          "quantity",
          "item"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AxOperationplan"
      },
      "AxOperationplanWithRelations": {
        "title": "AxOperationplanWithRelations",
        "type": "object",
        "description": "(tsType: AxOperationplanWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "reference": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "operation": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "itemCost": {
            "type": "number"
          },
          "itemsupplierCost": {
            "type": "number"
          },
          "origin": {
            "type": "string"
          },
          "destination": {
            "type": "string"
          },
          "supplier": {
            "type": "string"
          },
          "location": {
            "type": "string"
          },
          "demand": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "snapshotDateId",
          "reference",
          "type",
          "quantity",
          "item"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AxOperationplanWithRelations"
      },
      "AxOperationplanPartial": {
        "title": "AxOperationplanPartial",
        "type": "object",
        "description": "(tsType: Partial<AxOperationplan>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "reference": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "quantity": {
            "type": "number"
          },
          "startdate": {
            "type": "string",
            "format": "date-time"
          },
          "enddate": {
            "type": "string",
            "format": "date-time"
          },
          "operation": {
            "type": "string"
          },
          "owner": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "itemCost": {
            "type": "number"
          },
          "itemsupplierCost": {
            "type": "number"
          },
          "origin": {
            "type": "string"
          },
          "destination": {
            "type": "string"
          },
          "supplier": {
            "type": "string"
          },
          "location": {
            "type": "string"
          },
          "demand": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AxOperationplan>"
      },
      "AxManager": {
        "title": "AxManager",
        "type": "object",
        "properties": {
          "snapshotDate": {
            "type": "string",
            "format": "date-time"
          },
          "totalRecords": {
            "type": "number"
          },
          "bufferRecords": {
            "type": "number"
          },
          "demandRecords": {
            "type": "number"
          },
          "operationplanRecords": {
            "type": "number"
          }
        },
        "required": [
          "snapshotDate",
          "totalRecords",
          "bufferRecords",
          "demandRecords",
          "operationplanRecords"
        ],
        "additionalProperties": false
      },
      "NewAxManager": {
        "title": "NewAxManager",
        "type": "object",
        "description": "(tsType: AxManager, schemaOptions: { title: 'NewAxManager' })",
        "properties": {
          "snapshotDate": {
            "type": "string",
            "format": "date-time"
          },
          "totalRecords": {
            "type": "number"
          },
          "bufferRecords": {
            "type": "number"
          },
          "demandRecords": {
            "type": "number"
          },
          "operationplanRecords": {
            "type": "number"
          }
        },
        "required": [
          "snapshotDate",
          "totalRecords",
          "bufferRecords",
          "demandRecords",
          "operationplanRecords"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AxManager"
      },
      "AxManagerWithRelations": {
        "title": "AxManagerWithRelations",
        "type": "object",
        "description": "(tsType: AxManagerWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "snapshotDate": {
            "type": "string",
            "format": "date-time"
          },
          "totalRecords": {
            "type": "number"
          },
          "bufferRecords": {
            "type": "number"
          },
          "demandRecords": {
            "type": "number"
          },
          "operationplanRecords": {
            "type": "number"
          }
        },
        "required": [
          "snapshotDate",
          "totalRecords",
          "bufferRecords",
          "demandRecords",
          "operationplanRecords"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AxManagerWithRelations"
      },
      "AxManagerPartial": {
        "title": "AxManagerPartial",
        "type": "object",
        "description": "(tsType: Partial<AxManager>, schemaOptions: { partial: true })",
        "properties": {
          "snapshotDate": {
            "type": "string",
            "format": "date-time"
          },
          "totalRecords": {
            "type": "number"
          },
          "bufferRecords": {
            "type": "number"
          },
          "demandRecords": {
            "type": "number"
          },
          "operationplanRecords": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AxManager>"
      },
      "AxDemand": {
        "title": "AxDemand",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "location": {
            "type": "string"
          },
          "customer": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "quantity": {
            "type": "number"
          },
          "deliverydate": {
            "type": "string",
            "format": "date-time"
          },
          "quantityplanned": {
            "type": "number"
          }
        },
        "required": [
          "snapshotDateId",
          "name",
          "item",
          "location",
          "customer",
          "due",
          "priority",
          "quantity"
        ],
        "additionalProperties": false
      },
      "NewAxDemand": {
        "title": "NewAxDemand",
        "type": "object",
        "description": "(tsType: AxDemand, schemaOptions: { title: 'NewAxDemand' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "location": {
            "type": "string"
          },
          "customer": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "quantity": {
            "type": "number"
          },
          "deliverydate": {
            "type": "string",
            "format": "date-time"
          },
          "quantityplanned": {
            "type": "number"
          }
        },
        "required": [
          "snapshotDateId",
          "name",
          "item",
          "location",
          "customer",
          "due",
          "priority",
          "quantity"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AxDemand"
      },
      "AxDemandWithRelations": {
        "title": "AxDemandWithRelations",
        "type": "object",
        "description": "(tsType: AxDemandWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "location": {
            "type": "string"
          },
          "customer": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "quantity": {
            "type": "number"
          },
          "deliverydate": {
            "type": "string",
            "format": "date-time"
          },
          "quantityplanned": {
            "type": "number"
          }
        },
        "required": [
          "snapshotDateId",
          "name",
          "item",
          "location",
          "customer",
          "due",
          "priority",
          "quantity"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AxDemandWithRelations"
      },
      "AxDemandPartial": {
        "title": "AxDemandPartial",
        "type": "object",
        "description": "(tsType: Partial<AxDemand>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "name": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "location": {
            "type": "string"
          },
          "customer": {
            "type": "string"
          },
          "due": {
            "type": "string",
            "format": "date-time"
          },
          "status": {
            "type": "string"
          },
          "priority": {
            "type": "number"
          },
          "quantity": {
            "type": "number"
          },
          "deliverydate": {
            "type": "string",
            "format": "date-time"
          },
          "quantityplanned": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AxDemand>"
      },
      "AxBuffer": {
        "title": "AxBuffer",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "item": {
            "type": "string"
          },
          "location": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "onhand": {
            "type": "number"
          },
          "safetystock": {
            "type": "number"
          }
        },
        "required": [
          "snapshotDateId",
          "item",
          "location"
        ],
        "additionalProperties": false
      },
      "NewAxBuffer": {
        "title": "NewAxBuffer",
        "type": "object",
        "description": "(tsType: AxBuffer, schemaOptions: { title: 'NewAxBuffer' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "item": {
            "type": "string"
          },
          "location": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "onhand": {
            "type": "number"
          },
          "safetystock": {
            "type": "number"
          }
        },
        "required": [
          "snapshotDateId",
          "item",
          "location"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AxBuffer"
      },
      "AxBufferWithRelations": {
        "title": "AxBufferWithRelations",
        "type": "object",
        "description": "(tsType: AxBufferWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "item": {
            "type": "string"
          },
          "location": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "onhand": {
            "type": "number"
          },
          "safetystock": {
            "type": "number"
          }
        },
        "required": [
          "snapshotDateId",
          "item",
          "location"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AxBufferWithRelations"
      },
      "AxBufferPartial": {
        "title": "AxBufferPartial",
        "type": "object",
        "description": "(tsType: Partial<AxBuffer>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "snapshotDateId": {
            "type": "string",
            "format": "date-time"
          },
          "item": {
            "type": "string"
          },
          "location": {
            "type": "string"
          },
          "batch": {
            "type": "string"
          },
          "cost": {
            "type": "number"
          },
          "onhand": {
            "type": "number"
          },
          "safetystock": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AxBuffer>"
      },
      "AuthPermission": {
        "title": "AuthPermission",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "codename": {
            "type": "string"
          },
          "codetype": {
            "type": "string"
          },
          "permission": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "contentTypeId",
          "codename"
        ],
        "additionalProperties": false
      },
      "NewAuthPermission": {
        "title": "NewAuthPermission",
        "type": "object",
        "description": "(tsType: AuthPermission, schemaOptions: { title: 'NewAuthPermission' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "codename": {
            "type": "string"
          },
          "codetype": {
            "type": "string"
          },
          "permission": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "contentTypeId",
          "codename"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AuthPermission"
      },
      "AuthPermissionWithRelations": {
        "title": "AuthPermissionWithRelations",
        "type": "object",
        "description": "(tsType: AuthPermissionWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "codename": {
            "type": "string"
          },
          "codetype": {
            "type": "string"
          },
          "permission": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "contentTypeId",
          "codename"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AuthPermissionWithRelations"
      },
      "AuthPermissionPartial": {
        "title": "AuthPermissionPartial",
        "type": "object",
        "description": "(tsType: Partial<AuthPermission>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "contentTypeId": {
            "type": "number"
          },
          "codename": {
            "type": "string"
          },
          "codetype": {
            "type": "string"
          },
          "permission": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AuthPermission>"
      },
      "AuthGroup": {
        "title": "AuthGroup",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": false
      },
      "NewAuthGroup": {
        "title": "NewAuthGroup",
        "type": "object",
        "description": "(tsType: AuthGroup, schemaOptions: { title: 'NewAuthGroup' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AuthGroup"
      },
      "AuthGroupWithRelations": {
        "title": "AuthGroupWithRelations",
        "type": "object",
        "description": "(tsType: AuthGroupWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AuthGroupWithRelations"
      },
      "AuthGroupPartial": {
        "title": "AuthGroupPartial",
        "type": "object",
        "description": "(tsType: Partial<AuthGroup>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AuthGroup>"
      },
      "AuthGroupPermissions": {
        "title": "AuthGroupPermissions",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "groupId": {
            "type": "number"
          },
          "permissionId": {
            "type": "number"
          }
        },
        "required": [
          "groupId",
          "permissionId"
        ],
        "additionalProperties": false
      },
      "NewAuthGroupPermissions": {
        "title": "NewAuthGroupPermissions",
        "type": "object",
        "description": "(tsType: AuthGroupPermissions, schemaOptions: { title: 'NewAuthGroupPermissions' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "groupId": {
            "type": "number"
          },
          "permissionId": {
            "type": "number"
          }
        },
        "required": [
          "groupId",
          "permissionId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AuthGroupPermissions"
      },
      "AuthGroupPermissionsWithRelations": {
        "title": "AuthGroupPermissionsWithRelations",
        "type": "object",
        "description": "(tsType: AuthGroupPermissionsWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "groupId": {
            "type": "number"
          },
          "permissionId": {
            "type": "number"
          }
        },
        "required": [
          "groupId",
          "permissionId"
        ],
        "additionalProperties": false,
        "x-typescript-type": "AuthGroupPermissionsWithRelations"
      },
      "AuthGroupPermissionsPartial": {
        "title": "AuthGroupPermissionsPartial",
        "type": "object",
        "description": "(tsType: Partial<AuthGroupPermissions>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "groupId": {
            "type": "number"
          },
          "permissionId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AuthGroupPermissions>"
      },
      "AppMessage": {
        "title": "AppMessage",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "channelName": {
            "type": "string"
          },
          "msgJson": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "status": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewAppMessage": {
        "title": "NewAppMessage",
        "type": "object",
        "description": "(tsType: AppMessage, schemaOptions: { title: 'NewAppMessage' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "channelName": {
            "type": "string"
          },
          "msgJson": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "status": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AppMessage"
      },
      "AppMessageWithRelations": {
        "title": "AppMessageWithRelations",
        "type": "object",
        "description": "(tsType: AppMessageWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "channelName": {
            "type": "string"
          },
          "msgJson": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "status": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AppMessageWithRelations"
      },
      "AppMessagePartial": {
        "title": "AppMessagePartial",
        "type": "object",
        "description": "(tsType: Partial<AppMessage>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "channelName": {
            "type": "string"
          },
          "msgJson": {
            "type": "string"
          },
          "remark": {
            "type": "string"
          },
          "status": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AppMessage>"
      },
      "AppLogs": {
        "title": "AppLogs",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "remoteAddr": {
            "type": "string"
          },
          "serverVersion": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "clientId": {
            "type": "string"
          },
          "versionCode": {
            "type": "number"
          },
          "versionName": {
            "type": "number"
          },
          "deviceBrand": {
            "type": "string"
          },
          "enterpriseName": {
            "type": "string"
          },
          "manufacturer": {
            "type": "string"
          },
          "systemVersion": {
            "type": "string"
          },
          "systemModel": {
            "type": "string"
          },
          "androidId": {
            "type": "string"
          },
          "pdaType": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewAppLogs": {
        "title": "NewAppLogs",
        "type": "object",
        "description": "(tsType: AppLogs, schemaOptions: { title: 'NewAppLogs' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "remoteAddr": {
            "type": "string"
          },
          "serverVersion": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "clientId": {
            "type": "string"
          },
          "versionCode": {
            "type": "number"
          },
          "versionName": {
            "type": "number"
          },
          "deviceBrand": {
            "type": "string"
          },
          "enterpriseName": {
            "type": "string"
          },
          "manufacturer": {
            "type": "string"
          },
          "systemVersion": {
            "type": "string"
          },
          "systemModel": {
            "type": "string"
          },
          "androidId": {
            "type": "string"
          },
          "pdaType": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AppLogs"
      },
      "AppLogsWithRelations": {
        "title": "AppLogsWithRelations",
        "type": "object",
        "description": "(tsType: AppLogsWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "remoteAddr": {
            "type": "string"
          },
          "serverVersion": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "clientId": {
            "type": "string"
          },
          "versionCode": {
            "type": "number"
          },
          "versionName": {
            "type": "number"
          },
          "deviceBrand": {
            "type": "string"
          },
          "enterpriseName": {
            "type": "string"
          },
          "manufacturer": {
            "type": "string"
          },
          "systemVersion": {
            "type": "string"
          },
          "systemModel": {
            "type": "string"
          },
          "androidId": {
            "type": "string"
          },
          "pdaType": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AppLogsWithRelations"
      },
      "AppLogsPartial": {
        "title": "AppLogsPartial",
        "type": "object",
        "description": "(tsType: Partial<AppLogs>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "billDate": {
            "type": "string",
            "format": "date-time"
          },
          "remoteAddr": {
            "type": "string"
          },
          "serverVersion": {
            "type": "string"
          },
          "userId": {
            "type": "number"
          },
          "userName": {
            "type": "string"
          },
          "clientId": {
            "type": "string"
          },
          "versionCode": {
            "type": "number"
          },
          "versionName": {
            "type": "number"
          },
          "deviceBrand": {
            "type": "string"
          },
          "enterpriseName": {
            "type": "string"
          },
          "manufacturer": {
            "type": "string"
          },
          "systemVersion": {
            "type": "string"
          },
          "systemModel": {
            "type": "string"
          },
          "androidId": {
            "type": "string"
          },
          "pdaType": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AppLogs>"
      },
      "AppChannel": {
        "title": "AppChannel",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "channelName": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "msgFormat": {
            "type": "string"
          },
          "bStatus": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "NewAppChannel": {
        "title": "NewAppChannel",
        "type": "object",
        "description": "(tsType: AppChannel, schemaOptions: { title: 'NewAppChannel' })",
        "properties": {
          "id": {
            "type": "number"
          },
          "channelName": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "msgFormat": {
            "type": "string"
          },
          "bStatus": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AppChannel"
      },
      "AppChannelWithRelations": {
        "title": "AppChannelWithRelations",
        "type": "object",
        "description": "(tsType: AppChannelWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "channelName": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "msgFormat": {
            "type": "string"
          },
          "bStatus": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AppChannelWithRelations"
      },
      "AppChannelPartial": {
        "title": "AppChannelPartial",
        "type": "object",
        "description": "(tsType: Partial<AppChannel>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "channelName": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "msgFormat": {
            "type": "string"
          },
          "bStatus": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AppChannel>"
      },
      "loopback.Count": {
        "type": "object",
        "title": "loopback.Count",
        "x-typescript-type": "@loopback/repository#Count",
        "properties": {
          "count": {
            "type": "number"
          }
        }
      },
      "MssqlRow.Filter": {
        "type": "object",
        "title": "MssqlRow.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "MssqlRow.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<MssqlRow>"
      },
      "MssqlRow.Filter1": {
        "type": "object",
        "title": "MssqlRow.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "MssqlRow.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "MssqlRow.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<MssqlRow>"
      },
      "K3QPurchaseOrderOpen.Filter": {
        "type": "object",
        "title": "K3QPurchaseOrderOpen.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "currencyName": {
                    "type": "boolean"
                  },
                  "departmentName": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "closeFlag": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "planCategory": {
                    "type": "boolean"
                  },
                  "amountWithTax": {
                    "type": "boolean"
                  },
                  "deliveryDate": {
                    "type": "boolean"
                  },
                  "orderDate": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "taxPrice": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "orderDateKey": {
                    "type": "boolean"
                  },
                  "entrySort": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "currencyName",
                    "departmentName",
                    "itemNumber",
                    "itemName",
                    "billNo",
                    "unitName",
                    "partnerName",
                    "closeFlag",
                    "model",
                    "planCategory",
                    "amountWithTax",
                    "deliveryDate",
                    "orderDate",
                    "auditFlag",
                    "taxPrice",
                    "qty",
                    "salespersonName",
                    "pendingQty",
                    "orderDateKey",
                    "entrySort"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QPurchaseOrderOpen.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QPurchaseOrderOpen>"
      },
      "K3QPurchaseOrderOpen.Filter1": {
        "type": "object",
        "title": "K3QPurchaseOrderOpen.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QPurchaseOrderOpen.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "currencyName": {
                    "type": "boolean"
                  },
                  "departmentName": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "closeFlag": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "planCategory": {
                    "type": "boolean"
                  },
                  "amountWithTax": {
                    "type": "boolean"
                  },
                  "deliveryDate": {
                    "type": "boolean"
                  },
                  "orderDate": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "taxPrice": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "orderDateKey": {
                    "type": "boolean"
                  },
                  "entrySort": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "currencyName",
                    "departmentName",
                    "itemNumber",
                    "itemName",
                    "billNo",
                    "unitName",
                    "partnerName",
                    "closeFlag",
                    "model",
                    "planCategory",
                    "amountWithTax",
                    "deliveryDate",
                    "orderDate",
                    "auditFlag",
                    "taxPrice",
                    "qty",
                    "salespersonName",
                    "pendingQty",
                    "orderDateKey",
                    "entrySort"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QPurchaseOrderOpen.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QPurchaseOrderOpen>"
      },
      "K3QSalesOrderOpen.Filter": {
        "type": "object",
        "title": "K3QSalesOrderOpen.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "currencyName": {
                    "type": "boolean"
                  },
                  "departmentName": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "closeFlag": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "planCategory": {
                    "type": "boolean"
                  },
                  "amountWithTax": {
                    "type": "boolean"
                  },
                  "deliveryDate": {
                    "type": "boolean"
                  },
                  "orderDate": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "taxPrice": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "orderDateKey": {
                    "type": "boolean"
                  },
                  "entrySort": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "currencyName",
                    "departmentName",
                    "itemNumber",
                    "itemName",
                    "billNo",
                    "unitName",
                    "partnerName",
                    "closeFlag",
                    "model",
                    "planCategory",
                    "amountWithTax",
                    "deliveryDate",
                    "orderDate",
                    "auditFlag",
                    "taxPrice",
                    "qty",
                    "salespersonName",
                    "pendingQty",
                    "orderDateKey",
                    "entrySort"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QSalesOrderOpen.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QSalesOrderOpen>"
      },
      "K3QSalesOrderOpen.Filter1": {
        "type": "object",
        "title": "K3QSalesOrderOpen.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QSalesOrderOpen.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "currencyName": {
                    "type": "boolean"
                  },
                  "departmentName": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "closeFlag": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "planCategory": {
                    "type": "boolean"
                  },
                  "amountWithTax": {
                    "type": "boolean"
                  },
                  "deliveryDate": {
                    "type": "boolean"
                  },
                  "orderDate": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "taxPrice": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "orderDateKey": {
                    "type": "boolean"
                  },
                  "entrySort": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "currencyName",
                    "departmentName",
                    "itemNumber",
                    "itemName",
                    "billNo",
                    "unitName",
                    "partnerName",
                    "closeFlag",
                    "model",
                    "planCategory",
                    "amountWithTax",
                    "deliveryDate",
                    "orderDate",
                    "auditFlag",
                    "taxPrice",
                    "qty",
                    "salespersonName",
                    "pendingQty",
                    "orderDateKey",
                    "entrySort"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QSalesOrderOpen.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QSalesOrderOpen>"
      },
      "K3QStockBill_1.Filter": {
        "type": "object",
        "title": "K3QStockBill_1.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_1.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_1>"
      },
      "K3QStockBill_1.Filter1": {
        "type": "object",
        "title": "K3QStockBill_1.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QStockBill_1.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_1.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_1>"
      },
      "K3QStockBill_10.Filter": {
        "type": "object",
        "title": "K3QStockBill_10.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_10.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_10>"
      },
      "K3QStockBill_10.Filter1": {
        "type": "object",
        "title": "K3QStockBill_10.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QStockBill_10.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_10.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_10>"
      },
      "K3QStockBill_2.Filter": {
        "type": "object",
        "title": "K3QStockBill_2.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_2.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_2>"
      },
      "K3QStockBill_2.Filter1": {
        "type": "object",
        "title": "K3QStockBill_2.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QStockBill_2.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_2.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_2>"
      },
      "K3QStockBill_21.Filter": {
        "type": "object",
        "title": "K3QStockBill_21.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_21.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_21>"
      },
      "K3QStockBill_21.Filter1": {
        "type": "object",
        "title": "K3QStockBill_21.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QStockBill_21.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_21.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_21>"
      },
      "K3QStockBill_24.Filter": {
        "type": "object",
        "title": "K3QStockBill_24.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_24.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_24>"
      },
      "K3QStockBill_24.Filter1": {
        "type": "object",
        "title": "K3QStockBill_24.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QStockBill_24.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_24.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_24>"
      },
      "K3QStockBill_28.Filter": {
        "type": "object",
        "title": "K3QStockBill_28.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_28.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_28>"
      },
      "K3QStockBill_28.Filter1": {
        "type": "object",
        "title": "K3QStockBill_28.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QStockBill_28.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_28.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_28>"
      },
      "K3QStockBill_29.Filter": {
        "type": "object",
        "title": "K3QStockBill_29.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_29.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_29>"
      },
      "K3QStockBill_29.Filter1": {
        "type": "object",
        "title": "K3QStockBill_29.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QStockBill_29.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_29.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_29>"
      },
      "K3QStockBill_5.Filter": {
        "type": "object",
        "title": "K3QStockBill_5.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_5.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_5>"
      },
      "K3QStockBill_5.Filter1": {
        "type": "object",
        "title": "K3QStockBill_5.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QStockBill_5.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QStockBill_5.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QStockBill_5>"
      },
      "K3QSubcontractOrderOpen.Filter": {
        "type": "object",
        "title": "K3QSubcontractOrderOpen.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "currencyName": {
                    "type": "boolean"
                  },
                  "departmentName": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "closeFlag": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "planCategory": {
                    "type": "boolean"
                  },
                  "amountWithTax": {
                    "type": "boolean"
                  },
                  "deliveryDate": {
                    "type": "boolean"
                  },
                  "orderDate": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "taxPrice": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "orderDateKey": {
                    "type": "boolean"
                  },
                  "entrySort": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "currencyName",
                    "departmentName",
                    "itemNumber",
                    "itemName",
                    "billNo",
                    "unitName",
                    "partnerName",
                    "closeFlag",
                    "model",
                    "planCategory",
                    "amountWithTax",
                    "deliveryDate",
                    "orderDate",
                    "auditFlag",
                    "taxPrice",
                    "qty",
                    "salespersonName",
                    "pendingQty",
                    "orderDateKey",
                    "entrySort"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QSubcontractOrderOpen.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QSubcontractOrderOpen>"
      },
      "K3QSubcontractOrderOpen.Filter1": {
        "type": "object",
        "title": "K3QSubcontractOrderOpen.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3QSubcontractOrderOpen.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "currencyName": {
                    "type": "boolean"
                  },
                  "departmentName": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "closeFlag": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "planCategory": {
                    "type": "boolean"
                  },
                  "amountWithTax": {
                    "type": "boolean"
                  },
                  "deliveryDate": {
                    "type": "boolean"
                  },
                  "orderDate": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "taxPrice": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "orderDateKey": {
                    "type": "boolean"
                  },
                  "entrySort": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "currencyName",
                    "departmentName",
                    "itemNumber",
                    "itemName",
                    "billNo",
                    "unitName",
                    "partnerName",
                    "closeFlag",
                    "model",
                    "planCategory",
                    "amountWithTax",
                    "deliveryDate",
                    "orderDate",
                    "auditFlag",
                    "taxPrice",
                    "qty",
                    "salespersonName",
                    "pendingQty",
                    "orderDateKey",
                    "entrySort"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3QSubcontractOrderOpen.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3QSubcontractOrderOpen>"
      },
      "K3Icbom.Filter": {
        "type": "object",
        "title": "K3Icbom.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fbomNumber": {
                    "type": "boolean"
                  },
                  "fImpMode": {
                    "type": "boolean"
                  },
                  "fUseStatus": {
                    "type": "boolean"
                  },
                  "fVersion": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fYield": {
                    "type": "boolean"
                  },
                  "fCheckId": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fOperatorId": {
                    "type": "boolean"
                  },
                  "fEnterTime": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fCancellation": {
                    "type": "boolean"
                  },
                  "fTranType": {
                    "type": "boolean"
                  },
                  "fRoutingId": {
                    "type": "boolean"
                  },
                  "fBomType": {
                    "type": "boolean"
                  },
                  "fCustId": {
                    "type": "boolean"
                  },
                  "fCustItemId": {
                    "type": "boolean"
                  },
                  "fAccessories": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fauxqty": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fAudDate": {
                    "type": "boolean"
                  },
                  "fEcnInterId": {
                    "type": "boolean"
                  },
                  "fBeenChecked": {
                    "type": "boolean"
                  },
                  "fForbid": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fpdmImportDate": {
                    "type": "boolean"
                  },
                  "fbomSkip": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fUserId": {
                    "type": "boolean"
                  },
                  "fUseDate": {
                    "type": "boolean"
                  },
                  "fPrintCount": {
                    "type": "boolean"
                  },
                  "fMultiCheckStatus": {
                    "type": "boolean"
                  },
                  "fSendStatus": {
                    "type": "boolean"
                  },
                  "fEnterpriseId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fbomNumber",
                    "fImpMode",
                    "fUseStatus",
                    "fVersion",
                    "fParentId",
                    "fItemId",
                    "fQty",
                    "fYield",
                    "fCheckId",
                    "fCheckDate",
                    "fOperatorId",
                    "fEnterTime",
                    "fStatus",
                    "fCancellation",
                    "fTranType",
                    "fRoutingId",
                    "fBomType",
                    "fCustId",
                    "fCustItemId",
                    "fAccessories",
                    "fNote",
                    "fUnitId",
                    "fauxqty",
                    "fCheckerId",
                    "fAudDate",
                    "fEcnInterId",
                    "fBeenChecked",
                    "fForbid",
                    "fAuxPropId",
                    "fpdmImportDate",
                    "fbomSkip",
                    "fClassTypeId",
                    "fUserId",
                    "fUseDate",
                    "fPrintCount",
                    "fMultiCheckStatus",
                    "fSendStatus",
                    "fEnterpriseId"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3Icbom.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3Icbom>"
      },
      "K3Icbom.Filter1": {
        "type": "object",
        "title": "K3Icbom.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3Icbom.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fbomNumber": {
                    "type": "boolean"
                  },
                  "fImpMode": {
                    "type": "boolean"
                  },
                  "fUseStatus": {
                    "type": "boolean"
                  },
                  "fVersion": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fYield": {
                    "type": "boolean"
                  },
                  "fCheckId": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fOperatorId": {
                    "type": "boolean"
                  },
                  "fEnterTime": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fCancellation": {
                    "type": "boolean"
                  },
                  "fTranType": {
                    "type": "boolean"
                  },
                  "fRoutingId": {
                    "type": "boolean"
                  },
                  "fBomType": {
                    "type": "boolean"
                  },
                  "fCustId": {
                    "type": "boolean"
                  },
                  "fCustItemId": {
                    "type": "boolean"
                  },
                  "fAccessories": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fauxqty": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fAudDate": {
                    "type": "boolean"
                  },
                  "fEcnInterId": {
                    "type": "boolean"
                  },
                  "fBeenChecked": {
                    "type": "boolean"
                  },
                  "fForbid": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fpdmImportDate": {
                    "type": "boolean"
                  },
                  "fbomSkip": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fUserId": {
                    "type": "boolean"
                  },
                  "fUseDate": {
                    "type": "boolean"
                  },
                  "fPrintCount": {
                    "type": "boolean"
                  },
                  "fMultiCheckStatus": {
                    "type": "boolean"
                  },
                  "fSendStatus": {
                    "type": "boolean"
                  },
                  "fEnterpriseId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fbomNumber",
                    "fImpMode",
                    "fUseStatus",
                    "fVersion",
                    "fParentId",
                    "fItemId",
                    "fQty",
                    "fYield",
                    "fCheckId",
                    "fCheckDate",
                    "fOperatorId",
                    "fEnterTime",
                    "fStatus",
                    "fCancellation",
                    "fTranType",
                    "fRoutingId",
                    "fBomType",
                    "fCustId",
                    "fCustItemId",
                    "fAccessories",
                    "fNote",
                    "fUnitId",
                    "fauxqty",
                    "fCheckerId",
                    "fAudDate",
                    "fEcnInterId",
                    "fBeenChecked",
                    "fForbid",
                    "fAuxPropId",
                    "fpdmImportDate",
                    "fbomSkip",
                    "fClassTypeId",
                    "fUserId",
                    "fUseDate",
                    "fPrintCount",
                    "fMultiCheckStatus",
                    "fSendStatus",
                    "fEnterpriseId"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3Icbom.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3Icbom>"
      },
      "K3IcbomChild.Filter": {
        "type": "object",
        "title": "K3IcbomChild.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fAuxQty": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fScrap": {
                    "type": "boolean"
                  },
                  "fOperSn": {
                    "type": "boolean"
                  },
                  "fOperId": {
                    "type": "boolean"
                  },
                  "fMachinePos": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fMaterielType": {
                    "type": "boolean"
                  },
                  "fMarshalType": {
                    "type": "boolean"
                  },
                  "fPercent": {
                    "type": "boolean"
                  },
                  "fBeginDay": {
                    "type": "boolean"
                  },
                  "fEndDay": {
                    "type": "boolean"
                  },
                  "fOffSetDay": {
                    "type": "boolean"
                  },
                  "fBackFlush": {
                    "type": "boolean"
                  },
                  "fStockId": {
                    "type": "boolean"
                  },
                  "fspid": {
                    "type": "boolean"
                  },
                  "fSupply": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fpdmImportDate": {
                    "type": "boolean"
                  },
                  "fPositionNo": {
                    "type": "boolean"
                  },
                  "fItemSize": {
                    "type": "boolean"
                  },
                  "fItemSuite": {
                    "type": "boolean"
                  },
                  "fNote1": {
                    "type": "boolean"
                  },
                  "fNote2": {
                    "type": "boolean"
                  },
                  "fNote3": {
                    "type": "boolean"
                  },
                  "fHasChar": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fEntryKey": {
                    "type": "boolean"
                  },
                  "fCostPercentage": {
                    "type": "boolean"
                  },
                  "fOutSourceTranType": {
                    "type": "boolean"
                  },
                  "fOutSourceInterId": {
                    "type": "boolean"
                  },
                  "fOutSourceEntryId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fEntryId",
                    "fInterId",
                    "fItemId",
                    "fAuxQty",
                    "fQty",
                    "fScrap",
                    "fOperSn",
                    "fOperId",
                    "fMachinePos",
                    "fNote",
                    "fMaterielType",
                    "fMarshalType",
                    "fPercent",
                    "fBeginDay",
                    "fEndDay",
                    "fOffSetDay",
                    "fBackFlush",
                    "fStockId",
                    "fspid",
                    "fSupply",
                    "fUnitId",
                    "fAuxPropId",
                    "fpdmImportDate",
                    "fPositionNo",
                    "fItemSize",
                    "fItemSuite",
                    "fNote1",
                    "fNote2",
                    "fNote3",
                    "fHasChar",
                    "fDetailId",
                    "fEntryKey",
                    "fCostPercentage",
                    "fOutSourceTranType",
                    "fOutSourceInterId",
                    "fOutSourceEntryId"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcbomChild.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcbomChild>"
      },
      "K3IcbomChild.Filter1": {
        "type": "object",
        "title": "K3IcbomChild.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3IcbomChild.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fAuxQty": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fScrap": {
                    "type": "boolean"
                  },
                  "fOperSn": {
                    "type": "boolean"
                  },
                  "fOperId": {
                    "type": "boolean"
                  },
                  "fMachinePos": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fMaterielType": {
                    "type": "boolean"
                  },
                  "fMarshalType": {
                    "type": "boolean"
                  },
                  "fPercent": {
                    "type": "boolean"
                  },
                  "fBeginDay": {
                    "type": "boolean"
                  },
                  "fEndDay": {
                    "type": "boolean"
                  },
                  "fOffSetDay": {
                    "type": "boolean"
                  },
                  "fBackFlush": {
                    "type": "boolean"
                  },
                  "fStockId": {
                    "type": "boolean"
                  },
                  "fspid": {
                    "type": "boolean"
                  },
                  "fSupply": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fpdmImportDate": {
                    "type": "boolean"
                  },
                  "fPositionNo": {
                    "type": "boolean"
                  },
                  "fItemSize": {
                    "type": "boolean"
                  },
                  "fItemSuite": {
                    "type": "boolean"
                  },
                  "fNote1": {
                    "type": "boolean"
                  },
                  "fNote2": {
                    "type": "boolean"
                  },
                  "fNote3": {
                    "type": "boolean"
                  },
                  "fHasChar": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fEntryKey": {
                    "type": "boolean"
                  },
                  "fCostPercentage": {
                    "type": "boolean"
                  },
                  "fOutSourceTranType": {
                    "type": "boolean"
                  },
                  "fOutSourceInterId": {
                    "type": "boolean"
                  },
                  "fOutSourceEntryId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fEntryId",
                    "fInterId",
                    "fItemId",
                    "fAuxQty",
                    "fQty",
                    "fScrap",
                    "fOperSn",
                    "fOperId",
                    "fMachinePos",
                    "fNote",
                    "fMaterielType",
                    "fMarshalType",
                    "fPercent",
                    "fBeginDay",
                    "fEndDay",
                    "fOffSetDay",
                    "fBackFlush",
                    "fStockId",
                    "fspid",
                    "fSupply",
                    "fUnitId",
                    "fAuxPropId",
                    "fpdmImportDate",
                    "fPositionNo",
                    "fItemSize",
                    "fItemSuite",
                    "fNote1",
                    "fNote2",
                    "fNote3",
                    "fHasChar",
                    "fDetailId",
                    "fEntryKey",
                    "fCostPercentage",
                    "fOutSourceTranType",
                    "fOutSourceInterId",
                    "fOutSourceEntryId"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcbomChild.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcbomChild>"
      },
      "K3IcInventory.Filter": {
        "type": "object",
        "title": "K3IcInventory.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fBatchNo": {
                    "type": "boolean"
                  },
                  "fStockId": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fBal": {
                    "type": "boolean"
                  },
                  "fStockPlaceId": {
                    "type": "boolean"
                  },
                  "fkfPeriod": {
                    "type": "boolean"
                  },
                  "fkfDate": {
                    "type": "boolean"
                  },
                  "fQtyLock": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fSecQty": {
                    "type": "boolean"
                  },
                  "fmtoNo": {
                    "type": "boolean"
                  },
                  "fSupplyId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fItemId",
                    "fBatchNo",
                    "fStockId",
                    "fQty",
                    "fBal",
                    "fStockPlaceId",
                    "fkfPeriod",
                    "fkfDate",
                    "fQtyLock",
                    "fAuxPropId",
                    "fSecQty",
                    "fmtoNo",
                    "fSupplyId"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcInventory.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcInventory>"
      },
      "K3IcInventory.Filter1": {
        "type": "object",
        "title": "K3IcInventory.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3IcInventory.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fBatchNo": {
                    "type": "boolean"
                  },
                  "fStockId": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fBal": {
                    "type": "boolean"
                  },
                  "fStockPlaceId": {
                    "type": "boolean"
                  },
                  "fkfPeriod": {
                    "type": "boolean"
                  },
                  "fkfDate": {
                    "type": "boolean"
                  },
                  "fQtyLock": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fSecQty": {
                    "type": "boolean"
                  },
                  "fmtoNo": {
                    "type": "boolean"
                  },
                  "fSupplyId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fItemId",
                    "fBatchNo",
                    "fStockId",
                    "fQty",
                    "fBal",
                    "fStockPlaceId",
                    "fkfPeriod",
                    "fkfDate",
                    "fQtyLock",
                    "fAuxPropId",
                    "fSecQty",
                    "fmtoNo",
                    "fSupplyId"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcInventory.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcInventory>"
      },
      "K3IcPrcPlyEntry.Filter": {
        "type": "object",
        "title": "K3IcPrcPlyEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fRelatedId": {
                    "type": "boolean"
                  },
                  "fModel": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fBegQty": {
                    "type": "boolean"
                  },
                  "fEndQty": {
                    "type": "boolean"
                  },
                  "fCuryId": {
                    "type": "boolean"
                  },
                  "fPriceType": {
                    "type": "boolean"
                  },
                  "fPrice": {
                    "type": "boolean"
                  },
                  "fBegDate": {
                    "type": "boolean"
                  },
                  "fEndDate": {
                    "type": "boolean"
                  },
                  "fLeadTime": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fChecked": {
                    "type": "boolean"
                  },
                  "fIndex": {
                    "type": "boolean"
                  },
                  "fTime": {
                    "type": "boolean"
                  },
                  "fid": {
                    "type": "boolean"
                  },
                  "fBase": {
                    "type": "boolean"
                  },
                  "fBase1": {
                    "type": "boolean"
                  },
                  "fBegQtyBase": {
                    "type": "boolean"
                  },
                  "fEndQtyBase": {
                    "type": "boolean"
                  },
                  "fInteger": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fbCust": {
                    "type": "boolean"
                  },
                  "fb2CustCls": {
                    "type": "boolean"
                  },
                  "fb2Emp": {
                    "type": "boolean"
                  },
                  "fb2EmpCls": {
                    "type": "boolean"
                  },
                  "fb2VipGrp": {
                    "type": "boolean"
                  },
                  "fb2Cust": {
                    "type": "boolean"
                  },
                  "fb2ItemId": {
                    "type": "boolean"
                  },
                  "fb2Item": {
                    "type": "boolean"
                  },
                  "fFlagSave": {
                    "type": "boolean"
                  },
                  "fMainterId": {
                    "type": "boolean"
                  },
                  "fMaintDate": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fCreator": {
                    "type": "boolean"
                  },
                  "fOperator": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fInterId",
                    "fEntryId",
                    "fItemId",
                    "fRelatedId",
                    "fModel",
                    "fAuxPropId",
                    "fUnitId",
                    "fBegQty",
                    "fEndQty",
                    "fCuryId",
                    "fPriceType",
                    "fPrice",
                    "fBegDate",
                    "fEndDate",
                    "fLeadTime",
                    "fNote",
                    "fChecked",
                    "fIndex",
                    "fTime",
                    "fid",
                    "fBase",
                    "fBase1",
                    "fBegQtyBase",
                    "fEndQtyBase",
                    "fInteger",
                    "fClassTypeId",
                    "fbCust",
                    "fb2CustCls",
                    "fb2Emp",
                    "fb2EmpCls",
                    "fb2VipGrp",
                    "fb2Cust",
                    "fb2ItemId",
                    "fb2Item",
                    "fFlagSave",
                    "fMainterId",
                    "fMaintDate",
                    "fCheckerId",
                    "fCheckDate",
                    "fCreator",
                    "fOperator"
                  ],
                  "example": "fInterId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcPrcPlyEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcPrcPlyEntry>"
      },
      "K3IcPrcPlyEntry.Filter1": {
        "type": "object",
        "title": "K3IcPrcPlyEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3IcPrcPlyEntry.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fRelatedId": {
                    "type": "boolean"
                  },
                  "fModel": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fBegQty": {
                    "type": "boolean"
                  },
                  "fEndQty": {
                    "type": "boolean"
                  },
                  "fCuryId": {
                    "type": "boolean"
                  },
                  "fPriceType": {
                    "type": "boolean"
                  },
                  "fPrice": {
                    "type": "boolean"
                  },
                  "fBegDate": {
                    "type": "boolean"
                  },
                  "fEndDate": {
                    "type": "boolean"
                  },
                  "fLeadTime": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fChecked": {
                    "type": "boolean"
                  },
                  "fIndex": {
                    "type": "boolean"
                  },
                  "fTime": {
                    "type": "boolean"
                  },
                  "fid": {
                    "type": "boolean"
                  },
                  "fBase": {
                    "type": "boolean"
                  },
                  "fBase1": {
                    "type": "boolean"
                  },
                  "fBegQtyBase": {
                    "type": "boolean"
                  },
                  "fEndQtyBase": {
                    "type": "boolean"
                  },
                  "fInteger": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fbCust": {
                    "type": "boolean"
                  },
                  "fb2CustCls": {
                    "type": "boolean"
                  },
                  "fb2Emp": {
                    "type": "boolean"
                  },
                  "fb2EmpCls": {
                    "type": "boolean"
                  },
                  "fb2VipGrp": {
                    "type": "boolean"
                  },
                  "fb2Cust": {
                    "type": "boolean"
                  },
                  "fb2ItemId": {
                    "type": "boolean"
                  },
                  "fb2Item": {
                    "type": "boolean"
                  },
                  "fFlagSave": {
                    "type": "boolean"
                  },
                  "fMainterId": {
                    "type": "boolean"
                  },
                  "fMaintDate": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fCreator": {
                    "type": "boolean"
                  },
                  "fOperator": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fInterId",
                    "fEntryId",
                    "fItemId",
                    "fRelatedId",
                    "fModel",
                    "fAuxPropId",
                    "fUnitId",
                    "fBegQty",
                    "fEndQty",
                    "fCuryId",
                    "fPriceType",
                    "fPrice",
                    "fBegDate",
                    "fEndDate",
                    "fLeadTime",
                    "fNote",
                    "fChecked",
                    "fIndex",
                    "fTime",
                    "fid",
                    "fBase",
                    "fBase1",
                    "fBegQtyBase",
                    "fEndQtyBase",
                    "fInteger",
                    "fClassTypeId",
                    "fbCust",
                    "fb2CustCls",
                    "fb2Emp",
                    "fb2EmpCls",
                    "fb2VipGrp",
                    "fb2Cust",
                    "fb2ItemId",
                    "fb2Item",
                    "fFlagSave",
                    "fMainterId",
                    "fMaintDate",
                    "fCheckerId",
                    "fCheckDate",
                    "fCreator",
                    "fOperator"
                  ],
                  "example": "fInterId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcPrcPlyEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcPrcPlyEntry>"
      },
      "K3IcPrcPlyEntrySpec.Filter": {
        "type": "object",
        "title": "K3IcPrcPlyEntrySpec.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fRelatedId": {
                    "type": "boolean"
                  },
                  "flPriceCuryId": {
                    "type": "boolean"
                  },
                  "fLowPrice": {
                    "type": "boolean"
                  },
                  "fCanSell": {
                    "type": "boolean"
                  },
                  "flPriceCtrl": {
                    "type": "boolean"
                  },
                  "fFlag": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fInterId",
                    "fItemId",
                    "fRelatedId",
                    "flPriceCuryId",
                    "fLowPrice",
                    "fCanSell",
                    "flPriceCtrl",
                    "fFlag"
                  ],
                  "example": "fInterId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcPrcPlyEntrySpec.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcPrcPlyEntrySpec>"
      },
      "K3IcPrcPlyEntrySpec.Filter1": {
        "type": "object",
        "title": "K3IcPrcPlyEntrySpec.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3IcPrcPlyEntrySpec.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fRelatedId": {
                    "type": "boolean"
                  },
                  "flPriceCuryId": {
                    "type": "boolean"
                  },
                  "fLowPrice": {
                    "type": "boolean"
                  },
                  "fCanSell": {
                    "type": "boolean"
                  },
                  "flPriceCtrl": {
                    "type": "boolean"
                  },
                  "fFlag": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fInterId",
                    "fItemId",
                    "fRelatedId",
                    "flPriceCuryId",
                    "fLowPrice",
                    "fCanSell",
                    "flPriceCtrl",
                    "fFlag"
                  ],
                  "example": "fInterId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcPrcPlyEntrySpec.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcPrcPlyEntrySpec>"
      },
      "K3IcStockBill.Filter": {
        "type": "object",
        "title": "K3IcStockBill.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fBillNo": {
                    "type": "boolean"
                  },
                  "fTranType": {
                    "type": "boolean"
                  },
                  "fCancellation": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fUpStockWhenSave": {
                    "type": "boolean"
                  },
                  "frob": {
                    "type": "boolean"
                  },
                  "fHookStatus": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fSupplyId": {
                    "type": "boolean"
                  },
                  "fSaleStyle": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fDeptId": {
                    "type": "boolean"
                  },
                  "fEmpId": {
                    "type": "boolean"
                  },
                  "fManagerId": {
                    "type": "boolean"
                  },
                  "ffManagerId": {
                    "type": "boolean"
                  },
                  "fsManagerId": {
                    "type": "boolean"
                  },
                  "fBillerId": {
                    "type": "boolean"
                  },
                  "fPosterId": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fExplanation": {
                    "type": "boolean"
                  },
                  "fFetchAdd": {
                    "type": "boolean"
                  },
                  "fSelTranType": {
                    "type": "boolean"
                  },
                  "fPrintCount": {
                    "type": "boolean"
                  },
                  "fBrId": {
                    "type": "boolean"
                  },
                  "fSettleDate": {
                    "type": "boolean"
                  },
                  "fManageType": {
                    "type": "boolean"
                  },
                  "fEnterpriseId": {
                    "type": "boolean"
                  },
                  "fSendStatus": {
                    "type": "boolean"
                  },
                  "fAccessoryCount": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fBillNo",
                    "fTranType",
                    "fCancellation",
                    "fStatus",
                    "fUpStockWhenSave",
                    "frob",
                    "fHookStatus",
                    "fDate",
                    "fSupplyId",
                    "fSaleStyle",
                    "fCheckDate",
                    "fDeptId",
                    "fEmpId",
                    "fManagerId",
                    "ffManagerId",
                    "fsManagerId",
                    "fBillerId",
                    "fPosterId",
                    "fCheckerId",
                    "fNote",
                    "fExplanation",
                    "fFetchAdd",
                    "fSelTranType",
                    "fPrintCount",
                    "fBrId",
                    "fSettleDate",
                    "fManageType",
                    "fEnterpriseId",
                    "fSendStatus",
                    "fAccessoryCount"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcStockBill.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcStockBill>"
      },
      "K3IcStockBill.Filter1": {
        "type": "object",
        "title": "K3IcStockBill.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3IcStockBill.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fBillNo": {
                    "type": "boolean"
                  },
                  "fTranType": {
                    "type": "boolean"
                  },
                  "fCancellation": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fUpStockWhenSave": {
                    "type": "boolean"
                  },
                  "frob": {
                    "type": "boolean"
                  },
                  "fHookStatus": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fSupplyId": {
                    "type": "boolean"
                  },
                  "fSaleStyle": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fDeptId": {
                    "type": "boolean"
                  },
                  "fEmpId": {
                    "type": "boolean"
                  },
                  "fManagerId": {
                    "type": "boolean"
                  },
                  "ffManagerId": {
                    "type": "boolean"
                  },
                  "fsManagerId": {
                    "type": "boolean"
                  },
                  "fBillerId": {
                    "type": "boolean"
                  },
                  "fPosterId": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fExplanation": {
                    "type": "boolean"
                  },
                  "fFetchAdd": {
                    "type": "boolean"
                  },
                  "fSelTranType": {
                    "type": "boolean"
                  },
                  "fPrintCount": {
                    "type": "boolean"
                  },
                  "fBrId": {
                    "type": "boolean"
                  },
                  "fSettleDate": {
                    "type": "boolean"
                  },
                  "fManageType": {
                    "type": "boolean"
                  },
                  "fEnterpriseId": {
                    "type": "boolean"
                  },
                  "fSendStatus": {
                    "type": "boolean"
                  },
                  "fAccessoryCount": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fBillNo",
                    "fTranType",
                    "fCancellation",
                    "fStatus",
                    "fUpStockWhenSave",
                    "frob",
                    "fHookStatus",
                    "fDate",
                    "fSupplyId",
                    "fSaleStyle",
                    "fCheckDate",
                    "fDeptId",
                    "fEmpId",
                    "fManagerId",
                    "ffManagerId",
                    "fsManagerId",
                    "fBillerId",
                    "fPosterId",
                    "fCheckerId",
                    "fNote",
                    "fExplanation",
                    "fFetchAdd",
                    "fSelTranType",
                    "fPrintCount",
                    "fBrId",
                    "fSettleDate",
                    "fManageType",
                    "fEnterpriseId",
                    "fSendStatus",
                    "fAccessoryCount"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcStockBill.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcStockBill>"
      },
      "K3IcStockBillEntry.Filter": {
        "type": "object",
        "title": "K3IcStockBillEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fAuxQtyMust": {
                    "type": "boolean"
                  },
                  "fAuxQty": {
                    "type": "boolean"
                  },
                  "fAuxPrice": {
                    "type": "boolean"
                  },
                  "fAmount": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fdcStockId": {
                    "type": "boolean"
                  },
                  "fdcspid": {
                    "type": "boolean"
                  },
                  "fConsignPrice": {
                    "type": "boolean"
                  },
                  "fConsignAmount": {
                    "type": "boolean"
                  },
                  "fSourceBillNo": {
                    "type": "boolean"
                  },
                  "fSourceTranType": {
                    "type": "boolean"
                  },
                  "fSourceInterId": {
                    "type": "boolean"
                  },
                  "fSourceEntryId": {
                    "type": "boolean"
                  },
                  "fOrderBillNo": {
                    "type": "boolean"
                  },
                  "fOrderInterId": {
                    "type": "boolean"
                  },
                  "fOrderEntryId": {
                    "type": "boolean"
                  },
                  "fQtyMust": {
                    "type": "boolean"
                  },
                  "fMapNumber": {
                    "type": "boolean"
                  },
                  "fMapName": {
                    "type": "boolean"
                  },
                  "fBatchNo": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fEntryId",
                    "fItemId",
                    "fQty",
                    "fUnitId",
                    "fAuxQtyMust",
                    "fAuxQty",
                    "fAuxPrice",
                    "fAmount",
                    "fNote",
                    "fdcStockId",
                    "fdcspid",
                    "fConsignPrice",
                    "fConsignAmount",
                    "fSourceBillNo",
                    "fSourceTranType",
                    "fSourceInterId",
                    "fSourceEntryId",
                    "fOrderBillNo",
                    "fOrderInterId",
                    "fOrderEntryId",
                    "fQtyMust",
                    "fMapNumber",
                    "fMapName",
                    "fBatchNo"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcStockBillEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcStockBillEntry>"
      },
      "K3IcStockBillEntry.Filter1": {
        "type": "object",
        "title": "K3IcStockBillEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3IcStockBillEntry.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fAuxQtyMust": {
                    "type": "boolean"
                  },
                  "fAuxQty": {
                    "type": "boolean"
                  },
                  "fAuxPrice": {
                    "type": "boolean"
                  },
                  "fAmount": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fdcStockId": {
                    "type": "boolean"
                  },
                  "fdcspid": {
                    "type": "boolean"
                  },
                  "fConsignPrice": {
                    "type": "boolean"
                  },
                  "fConsignAmount": {
                    "type": "boolean"
                  },
                  "fSourceBillNo": {
                    "type": "boolean"
                  },
                  "fSourceTranType": {
                    "type": "boolean"
                  },
                  "fSourceInterId": {
                    "type": "boolean"
                  },
                  "fSourceEntryId": {
                    "type": "boolean"
                  },
                  "fOrderBillNo": {
                    "type": "boolean"
                  },
                  "fOrderInterId": {
                    "type": "boolean"
                  },
                  "fOrderEntryId": {
                    "type": "boolean"
                  },
                  "fQtyMust": {
                    "type": "boolean"
                  },
                  "fMapNumber": {
                    "type": "boolean"
                  },
                  "fMapName": {
                    "type": "boolean"
                  },
                  "fBatchNo": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fEntryId",
                    "fItemId",
                    "fQty",
                    "fUnitId",
                    "fAuxQtyMust",
                    "fAuxQty",
                    "fAuxPrice",
                    "fAmount",
                    "fNote",
                    "fdcStockId",
                    "fdcspid",
                    "fConsignPrice",
                    "fConsignAmount",
                    "fSourceBillNo",
                    "fSourceTranType",
                    "fSourceInterId",
                    "fSourceEntryId",
                    "fOrderBillNo",
                    "fOrderInterId",
                    "fOrderEntryId",
                    "fQtyMust",
                    "fMapNumber",
                    "fMapName",
                    "fBatchNo"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcStockBillEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcStockBillEntry>"
      },
      "K3IcSubContract.Filter": {
        "type": "object",
        "title": "K3IcSubContract.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fSupplyId": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fBillNo": {
                    "type": "boolean"
                  },
                  "fInvStyle": {
                    "type": "boolean"
                  },
                  "fSettleStyle": {
                    "type": "boolean"
                  },
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fDepartment": {
                    "type": "boolean"
                  },
                  "fSettleDate": {
                    "type": "boolean"
                  },
                  "fExchangeRate": {
                    "type": "boolean"
                  },
                  "fEmployee": {
                    "type": "boolean"
                  },
                  "fMangerId": {
                    "type": "boolean"
                  },
                  "fSummary": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fBillerId": {
                    "type": "boolean"
                  },
                  "fCancellation": {
                    "type": "boolean"
                  },
                  "fClosed": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fTranStatus": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fRelateBrId": {
                    "type": "boolean"
                  },
                  "fBrId": {
                    "type": "boolean"
                  },
                  "fpoOrdBillNo": {
                    "type": "boolean"
                  },
                  "fOrderRefuse": {
                    "type": "boolean"
                  },
                  "fPrintCount": {
                    "type": "boolean"
                  },
                  "fExchangeRateType": {
                    "type": "boolean"
                  },
                  "fClosedDate": {
                    "type": "boolean"
                  },
                  "fPlanCategory": {
                    "type": "boolean"
                  },
                  "fDeliveryPlace": {
                    "type": "boolean"
                  },
                  "fAccessoryCount": {
                    "type": "boolean"
                  },
                  "fCloserId": {
                    "type": "boolean"
                  },
                  "fVersionNo": {
                    "type": "boolean"
                  },
                  "fExeStatus": {
                    "type": "boolean"
                  },
                  "fConcernStatus": {
                    "type": "boolean"
                  },
                  "fSendStatus": {
                    "type": "boolean"
                  },
                  "fEnterpriseId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fInterId",
                    "fSupplyId",
                    "fDate",
                    "fBillNo",
                    "fInvStyle",
                    "fSettleStyle",
                    "fCurrencyId",
                    "fDepartment",
                    "fSettleDate",
                    "fExchangeRate",
                    "fEmployee",
                    "fMangerId",
                    "fSummary",
                    "fCheckerId",
                    "fCheckDate",
                    "fBillerId",
                    "fCancellation",
                    "fClosed",
                    "fStatus",
                    "fTranStatus",
                    "fClassTypeId",
                    "fRelateBrId",
                    "fBrId",
                    "fpoOrdBillNo",
                    "fOrderRefuse",
                    "fPrintCount",
                    "fExchangeRateType",
                    "fClosedDate",
                    "fPlanCategory",
                    "fDeliveryPlace",
                    "fAccessoryCount",
                    "fCloserId",
                    "fVersionNo",
                    "fExeStatus",
                    "fConcernStatus",
                    "fSendStatus",
                    "fEnterpriseId"
                  ],
                  "example": "fInterId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcSubContract.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcSubContract>"
      },
      "K3IcSubContract.Filter1": {
        "type": "object",
        "title": "K3IcSubContract.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3IcSubContract.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fSupplyId": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fBillNo": {
                    "type": "boolean"
                  },
                  "fInvStyle": {
                    "type": "boolean"
                  },
                  "fSettleStyle": {
                    "type": "boolean"
                  },
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fDepartment": {
                    "type": "boolean"
                  },
                  "fSettleDate": {
                    "type": "boolean"
                  },
                  "fExchangeRate": {
                    "type": "boolean"
                  },
                  "fEmployee": {
                    "type": "boolean"
                  },
                  "fMangerId": {
                    "type": "boolean"
                  },
                  "fSummary": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fBillerId": {
                    "type": "boolean"
                  },
                  "fCancellation": {
                    "type": "boolean"
                  },
                  "fClosed": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fTranStatus": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fRelateBrId": {
                    "type": "boolean"
                  },
                  "fBrId": {
                    "type": "boolean"
                  },
                  "fpoOrdBillNo": {
                    "type": "boolean"
                  },
                  "fOrderRefuse": {
                    "type": "boolean"
                  },
                  "fPrintCount": {
                    "type": "boolean"
                  },
                  "fExchangeRateType": {
                    "type": "boolean"
                  },
                  "fClosedDate": {
                    "type": "boolean"
                  },
                  "fPlanCategory": {
                    "type": "boolean"
                  },
                  "fDeliveryPlace": {
                    "type": "boolean"
                  },
                  "fAccessoryCount": {
                    "type": "boolean"
                  },
                  "fCloserId": {
                    "type": "boolean"
                  },
                  "fVersionNo": {
                    "type": "boolean"
                  },
                  "fExeStatus": {
                    "type": "boolean"
                  },
                  "fConcernStatus": {
                    "type": "boolean"
                  },
                  "fSendStatus": {
                    "type": "boolean"
                  },
                  "fEnterpriseId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fInterId",
                    "fSupplyId",
                    "fDate",
                    "fBillNo",
                    "fInvStyle",
                    "fSettleStyle",
                    "fCurrencyId",
                    "fDepartment",
                    "fSettleDate",
                    "fExchangeRate",
                    "fEmployee",
                    "fMangerId",
                    "fSummary",
                    "fCheckerId",
                    "fCheckDate",
                    "fBillerId",
                    "fCancellation",
                    "fClosed",
                    "fStatus",
                    "fTranStatus",
                    "fClassTypeId",
                    "fRelateBrId",
                    "fBrId",
                    "fpoOrdBillNo",
                    "fOrderRefuse",
                    "fPrintCount",
                    "fExchangeRateType",
                    "fClosedDate",
                    "fPlanCategory",
                    "fDeliveryPlace",
                    "fAccessoryCount",
                    "fCloserId",
                    "fVersionNo",
                    "fExeStatus",
                    "fConcernStatus",
                    "fSendStatus",
                    "fEnterpriseId"
                  ],
                  "example": "fInterId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcSubContract.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcSubContract>"
      },
      "K3IcSubContractEntry.Filter": {
        "type": "object",
        "title": "K3IcSubContractEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fIndex": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fMapId": {
                    "type": "boolean"
                  },
                  "fMapName": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fSecQty": {
                    "type": "boolean"
                  },
                  "fSecCommitQty": {
                    "type": "boolean"
                  },
                  "fSecCoefficient": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fAuxQty": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fAuxPrice": {
                    "type": "boolean"
                  },
                  "fAuxTaxPrice": {
                    "type": "boolean"
                  },
                  "fAmount": {
                    "type": "boolean"
                  },
                  "fDiscountRate": {
                    "type": "boolean"
                  },
                  "fAuxPriceDiscount": {
                    "type": "boolean"
                  },
                  "fAmtDiscount": {
                    "type": "boolean"
                  },
                  "fTaxRate": {
                    "type": "boolean"
                  },
                  "fTaxAmount": {
                    "type": "boolean"
                  },
                  "fAllAmount": {
                    "type": "boolean"
                  },
                  "fStdAllAmount": {
                    "type": "boolean"
                  },
                  "fPayShipDate": {
                    "type": "boolean"
                  },
                  "fFetchDate": {
                    "type": "boolean"
                  },
                  "fbomInterId": {
                    "type": "boolean"
                  },
                  "fInHighLimit": {
                    "type": "boolean"
                  },
                  "fInLowLimit": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fMrpAutoClosed": {
                    "type": "boolean"
                  },
                  "fMrpClosed": {
                    "type": "boolean"
                  },
                  "fmrpLockFlag": {
                    "type": "boolean"
                  },
                  "fClassTypeIdSrc": {
                    "type": "boolean"
                  },
                  "fEntryIdSrc": {
                    "type": "boolean"
                  },
                  "fInterIdSrc": {
                    "type": "boolean"
                  },
                  "fBillNoSrc": {
                    "type": "boolean"
                  },
                  "fInterIdOrderSrc": {
                    "type": "boolean"
                  },
                  "fEntryIdOrderSrc": {
                    "type": "boolean"
                  },
                  "fOrderNo": {
                    "type": "boolean"
                  },
                  "fInHighLimitQty": {
                    "type": "boolean"
                  },
                  "fInLowLimitQty": {
                    "type": "boolean"
                  },
                  "fAuxCommitQty": {
                    "type": "boolean"
                  },
                  "fCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxStockQty": {
                    "type": "boolean"
                  },
                  "fStockQty": {
                    "type": "boolean"
                  },
                  "fAuxQtyInvoice": {
                    "type": "boolean"
                  },
                  "fQtyInvoice": {
                    "type": "boolean"
                  },
                  "fReceiveAmountForCommit": {
                    "type": "boolean"
                  },
                  "fPlanMode": {
                    "type": "boolean"
                  },
                  "fmtoNo": {
                    "type": "boolean"
                  },
                  "fMrpTrackFlag": {
                    "type": "boolean"
                  },
                  "fporInterId": {
                    "type": "boolean"
                  },
                  "fporNumber": {
                    "type": "boolean"
                  },
                  "fbCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxBCommitQty": {
                    "type": "boolean"
                  },
                  "fSecQtyInvoice": {
                    "type": "boolean"
                  },
                  "fSecBCommitQty": {
                    "type": "boolean"
                  },
                  "fSecStockQty": {
                    "type": "boolean"
                  },
                  "fbomCategory": {
                    "type": "boolean"
                  },
                  "fSupConfirm": {
                    "type": "boolean"
                  },
                  "fSupConDate": {
                    "type": "boolean"
                  },
                  "fSupConQty": {
                    "type": "boolean"
                  },
                  "fSupConMem": {
                    "type": "boolean"
                  },
                  "fSupConFetchDate": {
                    "type": "boolean"
                  },
                  "fSupConfirmor": {
                    "type": "boolean"
                  },
                  "fRejectRefuseNote": {
                    "type": "boolean"
                  },
                  "fRefuseNote": {
                    "type": "boolean"
                  },
                  "fEntryAccessoryCount": {
                    "type": "boolean"
                  },
                  "fAuxDeliveryQty": {
                    "type": "boolean"
                  },
                  "fDeliveryQty": {
                    "type": "boolean"
                  },
                  "fQualityRptBillId": {
                    "type": "boolean"
                  },
                  "fAuxReceiptQty": {
                    "type": "boolean"
                  },
                  "fReceiptQty": {
                    "type": "boolean"
                  },
                  "fAuxReturnQty": {
                    "type": "boolean"
                  },
                  "fReturnQty": {
                    "type": "boolean"
                  },
                  "fCheckMethod": {
                    "type": "boolean"
                  },
                  "fIsCheck": {
                    "type": "boolean"
                  },
                  "fPayApplyAmountForCommit": {
                    "type": "boolean"
                  },
                  "fCommitAmt": {
                    "type": "boolean"
                  },
                  "fCommitAmtTax": {
                    "type": "boolean"
                  },
                  "fCommitStdAmtInTax": {
                    "type": "boolean"
                  },
                  "fCommitTax": {
                    "type": "boolean"
                  },
                  "fStockQtyOnlyForShow": {
                    "type": "boolean"
                  },
                  "fPayReqPayAmountFor": {
                    "type": "boolean"
                  },
                  "fOrderBomEntryId": {
                    "type": "boolean"
                  },
                  "fOutSourceInterId": {
                    "type": "boolean"
                  },
                  "fOutSourceEntryId": {
                    "type": "boolean"
                  },
                  "fOutSourceTranType": {
                    "type": "boolean"
                  },
                  "fDecimal": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fInterId",
                    "fEntryId",
                    "fIndex",
                    "fDetailId",
                    "fItemId",
                    "fMapId",
                    "fMapName",
                    "fAuxPropId",
                    "fSecQty",
                    "fSecCommitQty",
                    "fSecCoefficient",
                    "fUnitId",
                    "fAuxQty",
                    "fQty",
                    "fAuxPrice",
                    "fAuxTaxPrice",
                    "fAmount",
                    "fDiscountRate",
                    "fAuxPriceDiscount",
                    "fAmtDiscount",
                    "fTaxRate",
                    "fTaxAmount",
                    "fAllAmount",
                    "fStdAllAmount",
                    "fPayShipDate",
                    "fFetchDate",
                    "fbomInterId",
                    "fInHighLimit",
                    "fInLowLimit",
                    "fNote",
                    "fMrpAutoClosed",
                    "fMrpClosed",
                    "fmrpLockFlag",
                    "fClassTypeIdSrc",
                    "fEntryIdSrc",
                    "fInterIdSrc",
                    "fBillNoSrc",
                    "fInterIdOrderSrc",
                    "fEntryIdOrderSrc",
                    "fOrderNo",
                    "fInHighLimitQty",
                    "fInLowLimitQty",
                    "fAuxCommitQty",
                    "fCommitQty",
                    "fAuxStockQty",
                    "fStockQty",
                    "fAuxQtyInvoice",
                    "fQtyInvoice",
                    "fReceiveAmountForCommit",
                    "fPlanMode",
                    "fmtoNo",
                    "fMrpTrackFlag",
                    "fporInterId",
                    "fporNumber",
                    "fbCommitQty",
                    "fAuxBCommitQty",
                    "fSecQtyInvoice",
                    "fSecBCommitQty",
                    "fSecStockQty",
                    "fbomCategory",
                    "fSupConfirm",
                    "fSupConDate",
                    "fSupConQty",
                    "fSupConMem",
                    "fSupConFetchDate",
                    "fSupConfirmor",
                    "fRejectRefuseNote",
                    "fRefuseNote",
                    "fEntryAccessoryCount",
                    "fAuxDeliveryQty",
                    "fDeliveryQty",
                    "fQualityRptBillId",
                    "fAuxReceiptQty",
                    "fReceiptQty",
                    "fAuxReturnQty",
                    "fReturnQty",
                    "fCheckMethod",
                    "fIsCheck",
                    "fPayApplyAmountForCommit",
                    "fCommitAmt",
                    "fCommitAmtTax",
                    "fCommitStdAmtInTax",
                    "fCommitTax",
                    "fStockQtyOnlyForShow",
                    "fPayReqPayAmountFor",
                    "fOrderBomEntryId",
                    "fOutSourceInterId",
                    "fOutSourceEntryId",
                    "fOutSourceTranType",
                    "fDecimal"
                  ],
                  "example": "fInterId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcSubContractEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcSubContractEntry>"
      },
      "K3IcSubContractEntry.Filter1": {
        "type": "object",
        "title": "K3IcSubContractEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3IcSubContractEntry.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fIndex": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fMapId": {
                    "type": "boolean"
                  },
                  "fMapName": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fSecQty": {
                    "type": "boolean"
                  },
                  "fSecCommitQty": {
                    "type": "boolean"
                  },
                  "fSecCoefficient": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fAuxQty": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fAuxPrice": {
                    "type": "boolean"
                  },
                  "fAuxTaxPrice": {
                    "type": "boolean"
                  },
                  "fAmount": {
                    "type": "boolean"
                  },
                  "fDiscountRate": {
                    "type": "boolean"
                  },
                  "fAuxPriceDiscount": {
                    "type": "boolean"
                  },
                  "fAmtDiscount": {
                    "type": "boolean"
                  },
                  "fTaxRate": {
                    "type": "boolean"
                  },
                  "fTaxAmount": {
                    "type": "boolean"
                  },
                  "fAllAmount": {
                    "type": "boolean"
                  },
                  "fStdAllAmount": {
                    "type": "boolean"
                  },
                  "fPayShipDate": {
                    "type": "boolean"
                  },
                  "fFetchDate": {
                    "type": "boolean"
                  },
                  "fbomInterId": {
                    "type": "boolean"
                  },
                  "fInHighLimit": {
                    "type": "boolean"
                  },
                  "fInLowLimit": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fMrpAutoClosed": {
                    "type": "boolean"
                  },
                  "fMrpClosed": {
                    "type": "boolean"
                  },
                  "fmrpLockFlag": {
                    "type": "boolean"
                  },
                  "fClassTypeIdSrc": {
                    "type": "boolean"
                  },
                  "fEntryIdSrc": {
                    "type": "boolean"
                  },
                  "fInterIdSrc": {
                    "type": "boolean"
                  },
                  "fBillNoSrc": {
                    "type": "boolean"
                  },
                  "fInterIdOrderSrc": {
                    "type": "boolean"
                  },
                  "fEntryIdOrderSrc": {
                    "type": "boolean"
                  },
                  "fOrderNo": {
                    "type": "boolean"
                  },
                  "fInHighLimitQty": {
                    "type": "boolean"
                  },
                  "fInLowLimitQty": {
                    "type": "boolean"
                  },
                  "fAuxCommitQty": {
                    "type": "boolean"
                  },
                  "fCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxStockQty": {
                    "type": "boolean"
                  },
                  "fStockQty": {
                    "type": "boolean"
                  },
                  "fAuxQtyInvoice": {
                    "type": "boolean"
                  },
                  "fQtyInvoice": {
                    "type": "boolean"
                  },
                  "fReceiveAmountForCommit": {
                    "type": "boolean"
                  },
                  "fPlanMode": {
                    "type": "boolean"
                  },
                  "fmtoNo": {
                    "type": "boolean"
                  },
                  "fMrpTrackFlag": {
                    "type": "boolean"
                  },
                  "fporInterId": {
                    "type": "boolean"
                  },
                  "fporNumber": {
                    "type": "boolean"
                  },
                  "fbCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxBCommitQty": {
                    "type": "boolean"
                  },
                  "fSecQtyInvoice": {
                    "type": "boolean"
                  },
                  "fSecBCommitQty": {
                    "type": "boolean"
                  },
                  "fSecStockQty": {
                    "type": "boolean"
                  },
                  "fbomCategory": {
                    "type": "boolean"
                  },
                  "fSupConfirm": {
                    "type": "boolean"
                  },
                  "fSupConDate": {
                    "type": "boolean"
                  },
                  "fSupConQty": {
                    "type": "boolean"
                  },
                  "fSupConMem": {
                    "type": "boolean"
                  },
                  "fSupConFetchDate": {
                    "type": "boolean"
                  },
                  "fSupConfirmor": {
                    "type": "boolean"
                  },
                  "fRejectRefuseNote": {
                    "type": "boolean"
                  },
                  "fRefuseNote": {
                    "type": "boolean"
                  },
                  "fEntryAccessoryCount": {
                    "type": "boolean"
                  },
                  "fAuxDeliveryQty": {
                    "type": "boolean"
                  },
                  "fDeliveryQty": {
                    "type": "boolean"
                  },
                  "fQualityRptBillId": {
                    "type": "boolean"
                  },
                  "fAuxReceiptQty": {
                    "type": "boolean"
                  },
                  "fReceiptQty": {
                    "type": "boolean"
                  },
                  "fAuxReturnQty": {
                    "type": "boolean"
                  },
                  "fReturnQty": {
                    "type": "boolean"
                  },
                  "fCheckMethod": {
                    "type": "boolean"
                  },
                  "fIsCheck": {
                    "type": "boolean"
                  },
                  "fPayApplyAmountForCommit": {
                    "type": "boolean"
                  },
                  "fCommitAmt": {
                    "type": "boolean"
                  },
                  "fCommitAmtTax": {
                    "type": "boolean"
                  },
                  "fCommitStdAmtInTax": {
                    "type": "boolean"
                  },
                  "fCommitTax": {
                    "type": "boolean"
                  },
                  "fStockQtyOnlyForShow": {
                    "type": "boolean"
                  },
                  "fPayReqPayAmountFor": {
                    "type": "boolean"
                  },
                  "fOrderBomEntryId": {
                    "type": "boolean"
                  },
                  "fOutSourceInterId": {
                    "type": "boolean"
                  },
                  "fOutSourceEntryId": {
                    "type": "boolean"
                  },
                  "fOutSourceTranType": {
                    "type": "boolean"
                  },
                  "fDecimal": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fInterId",
                    "fEntryId",
                    "fIndex",
                    "fDetailId",
                    "fItemId",
                    "fMapId",
                    "fMapName",
                    "fAuxPropId",
                    "fSecQty",
                    "fSecCommitQty",
                    "fSecCoefficient",
                    "fUnitId",
                    "fAuxQty",
                    "fQty",
                    "fAuxPrice",
                    "fAuxTaxPrice",
                    "fAmount",
                    "fDiscountRate",
                    "fAuxPriceDiscount",
                    "fAmtDiscount",
                    "fTaxRate",
                    "fTaxAmount",
                    "fAllAmount",
                    "fStdAllAmount",
                    "fPayShipDate",
                    "fFetchDate",
                    "fbomInterId",
                    "fInHighLimit",
                    "fInLowLimit",
                    "fNote",
                    "fMrpAutoClosed",
                    "fMrpClosed",
                    "fmrpLockFlag",
                    "fClassTypeIdSrc",
                    "fEntryIdSrc",
                    "fInterIdSrc",
                    "fBillNoSrc",
                    "fInterIdOrderSrc",
                    "fEntryIdOrderSrc",
                    "fOrderNo",
                    "fInHighLimitQty",
                    "fInLowLimitQty",
                    "fAuxCommitQty",
                    "fCommitQty",
                    "fAuxStockQty",
                    "fStockQty",
                    "fAuxQtyInvoice",
                    "fQtyInvoice",
                    "fReceiveAmountForCommit",
                    "fPlanMode",
                    "fmtoNo",
                    "fMrpTrackFlag",
                    "fporInterId",
                    "fporNumber",
                    "fbCommitQty",
                    "fAuxBCommitQty",
                    "fSecQtyInvoice",
                    "fSecBCommitQty",
                    "fSecStockQty",
                    "fbomCategory",
                    "fSupConfirm",
                    "fSupConDate",
                    "fSupConQty",
                    "fSupConMem",
                    "fSupConFetchDate",
                    "fSupConfirmor",
                    "fRejectRefuseNote",
                    "fRefuseNote",
                    "fEntryAccessoryCount",
                    "fAuxDeliveryQty",
                    "fDeliveryQty",
                    "fQualityRptBillId",
                    "fAuxReceiptQty",
                    "fReceiptQty",
                    "fAuxReturnQty",
                    "fReturnQty",
                    "fCheckMethod",
                    "fIsCheck",
                    "fPayApplyAmountForCommit",
                    "fCommitAmt",
                    "fCommitAmtTax",
                    "fCommitStdAmtInTax",
                    "fCommitTax",
                    "fStockQtyOnlyForShow",
                    "fPayReqPayAmountFor",
                    "fOrderBomEntryId",
                    "fOutSourceInterId",
                    "fOutSourceEntryId",
                    "fOutSourceTranType",
                    "fDecimal"
                  ],
                  "example": "fInterId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3IcSubContractEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3IcSubContractEntry>"
      },
      "K3PoOrder.Filter": {
        "type": "object",
        "title": "K3PoOrder.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fTranType": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fBillNo": {
                    "type": "boolean"
                  },
                  "fSupplyId": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fEmpId": {
                    "type": "boolean"
                  },
                  "fDeptId": {
                    "type": "boolean"
                  },
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fBillerId": {
                    "type": "boolean"
                  },
                  "fMangerId": {
                    "type": "boolean"
                  },
                  "fClosed": {
                    "type": "boolean"
                  },
                  "fTranStatus": {
                    "type": "boolean"
                  },
                  "fExchangeRate": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fCancellation": {
                    "type": "boolean"
                  },
                  "fpoStyle": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel1": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel2": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel3": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel4": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel5": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel6": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate1": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate2": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate3": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate4": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate5": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate6": {
                    "type": "boolean"
                  },
                  "fCurCheckLevel": {
                    "type": "boolean"
                  },
                  "fRelateBrId": {
                    "type": "boolean"
                  },
                  "fOrderAffirm": {
                    "type": "boolean"
                  },
                  "fCashDiscount": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fExplanation": {
                    "type": "boolean"
                  },
                  "fFetchAdd": {
                    "type": "boolean"
                  },
                  "fSettleDate": {
                    "type": "boolean"
                  },
                  "fSettleId": {
                    "type": "boolean"
                  },
                  "fSelTranType": {
                    "type": "boolean"
                  },
                  "fChildren": {
                    "type": "boolean"
                  },
                  "fBrId": {
                    "type": "boolean"
                  },
                  "fpoOrdBillNo": {
                    "type": "boolean"
                  },
                  "fAreaPs": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fTotalCostFor": {
                    "type": "boolean"
                  },
                  "flastModyDate": {
                    "type": "boolean"
                  },
                  "fManageType": {
                    "type": "boolean"
                  },
                  "fSysStatus": {
                    "type": "boolean"
                  },
                  "fVersionNo": {
                    "type": "boolean"
                  },
                  "fChangeDate": {
                    "type": "boolean"
                  },
                  "fChangeCauses": {
                    "type": "boolean"
                  },
                  "fChangeMark": {
                    "type": "boolean"
                  },
                  "fChangeUser": {
                    "type": "boolean"
                  },
                  "fValidaterName": {
                    "type": "boolean"
                  },
                  "fConsignee": {
                    "type": "boolean"
                  },
                  "fPrintCount": {
                    "type": "boolean"
                  },
                  "fExchangeRateType": {
                    "type": "boolean"
                  },
                  "fDeliveryPlace": {
                    "type": "boolean"
                  },
                  "fAccessoryCount": {
                    "type": "boolean"
                  },
                  "fpoMode": {
                    "type": "boolean"
                  },
                  "fPlanCategory": {
                    "type": "boolean"
                  },
                  "fLastAlterBillNo": {
                    "type": "boolean"
                  },
                  "fCloseUser": {
                    "type": "boolean"
                  },
                  "fCloseDate": {
                    "type": "boolean"
                  },
                  "fCloseCauses": {
                    "type": "boolean"
                  },
                  "fSendStatus": {
                    "type": "boolean"
                  },
                  "fEnterpriseId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fTranType",
                    "fInterId",
                    "fBillNo",
                    "fSupplyId",
                    "fDate",
                    "fEmpId",
                    "fDeptId",
                    "fCurrencyId",
                    "fCheckerId",
                    "fBillerId",
                    "fMangerId",
                    "fClosed",
                    "fTranStatus",
                    "fExchangeRate",
                    "fStatus",
                    "fCancellation",
                    "fpoStyle",
                    "fMultiCheckLevel1",
                    "fMultiCheckLevel2",
                    "fMultiCheckLevel3",
                    "fMultiCheckLevel4",
                    "fMultiCheckLevel5",
                    "fMultiCheckLevel6",
                    "fMultiCheckDate1",
                    "fMultiCheckDate2",
                    "fMultiCheckDate3",
                    "fMultiCheckDate4",
                    "fMultiCheckDate5",
                    "fMultiCheckDate6",
                    "fCurCheckLevel",
                    "fRelateBrId",
                    "fOrderAffirm",
                    "fCashDiscount",
                    "fCheckDate",
                    "fExplanation",
                    "fFetchAdd",
                    "fSettleDate",
                    "fSettleId",
                    "fSelTranType",
                    "fChildren",
                    "fBrId",
                    "fpoOrdBillNo",
                    "fAreaPs",
                    "fClassTypeId",
                    "fTotalCostFor",
                    "flastModyDate",
                    "fManageType",
                    "fSysStatus",
                    "fVersionNo",
                    "fChangeDate",
                    "fChangeCauses",
                    "fChangeMark",
                    "fChangeUser",
                    "fValidaterName",
                    "fConsignee",
                    "fPrintCount",
                    "fExchangeRateType",
                    "fDeliveryPlace",
                    "fAccessoryCount",
                    "fpoMode",
                    "fPlanCategory",
                    "fLastAlterBillNo",
                    "fCloseUser",
                    "fCloseDate",
                    "fCloseCauses",
                    "fSendStatus",
                    "fEnterpriseId"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3PoOrder.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3PoOrder>"
      },
      "K3PoOrder.Filter1": {
        "type": "object",
        "title": "K3PoOrder.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3PoOrder.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fTranType": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fBillNo": {
                    "type": "boolean"
                  },
                  "fSupplyId": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fEmpId": {
                    "type": "boolean"
                  },
                  "fDeptId": {
                    "type": "boolean"
                  },
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fBillerId": {
                    "type": "boolean"
                  },
                  "fMangerId": {
                    "type": "boolean"
                  },
                  "fClosed": {
                    "type": "boolean"
                  },
                  "fTranStatus": {
                    "type": "boolean"
                  },
                  "fExchangeRate": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fCancellation": {
                    "type": "boolean"
                  },
                  "fpoStyle": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel1": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel2": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel3": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel4": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel5": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel6": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate1": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate2": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate3": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate4": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate5": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate6": {
                    "type": "boolean"
                  },
                  "fCurCheckLevel": {
                    "type": "boolean"
                  },
                  "fRelateBrId": {
                    "type": "boolean"
                  },
                  "fOrderAffirm": {
                    "type": "boolean"
                  },
                  "fCashDiscount": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fExplanation": {
                    "type": "boolean"
                  },
                  "fFetchAdd": {
                    "type": "boolean"
                  },
                  "fSettleDate": {
                    "type": "boolean"
                  },
                  "fSettleId": {
                    "type": "boolean"
                  },
                  "fSelTranType": {
                    "type": "boolean"
                  },
                  "fChildren": {
                    "type": "boolean"
                  },
                  "fBrId": {
                    "type": "boolean"
                  },
                  "fpoOrdBillNo": {
                    "type": "boolean"
                  },
                  "fAreaPs": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fTotalCostFor": {
                    "type": "boolean"
                  },
                  "flastModyDate": {
                    "type": "boolean"
                  },
                  "fManageType": {
                    "type": "boolean"
                  },
                  "fSysStatus": {
                    "type": "boolean"
                  },
                  "fVersionNo": {
                    "type": "boolean"
                  },
                  "fChangeDate": {
                    "type": "boolean"
                  },
                  "fChangeCauses": {
                    "type": "boolean"
                  },
                  "fChangeMark": {
                    "type": "boolean"
                  },
                  "fChangeUser": {
                    "type": "boolean"
                  },
                  "fValidaterName": {
                    "type": "boolean"
                  },
                  "fConsignee": {
                    "type": "boolean"
                  },
                  "fPrintCount": {
                    "type": "boolean"
                  },
                  "fExchangeRateType": {
                    "type": "boolean"
                  },
                  "fDeliveryPlace": {
                    "type": "boolean"
                  },
                  "fAccessoryCount": {
                    "type": "boolean"
                  },
                  "fpoMode": {
                    "type": "boolean"
                  },
                  "fPlanCategory": {
                    "type": "boolean"
                  },
                  "fLastAlterBillNo": {
                    "type": "boolean"
                  },
                  "fCloseUser": {
                    "type": "boolean"
                  },
                  "fCloseDate": {
                    "type": "boolean"
                  },
                  "fCloseCauses": {
                    "type": "boolean"
                  },
                  "fSendStatus": {
                    "type": "boolean"
                  },
                  "fEnterpriseId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fTranType",
                    "fInterId",
                    "fBillNo",
                    "fSupplyId",
                    "fDate",
                    "fEmpId",
                    "fDeptId",
                    "fCurrencyId",
                    "fCheckerId",
                    "fBillerId",
                    "fMangerId",
                    "fClosed",
                    "fTranStatus",
                    "fExchangeRate",
                    "fStatus",
                    "fCancellation",
                    "fpoStyle",
                    "fMultiCheckLevel1",
                    "fMultiCheckLevel2",
                    "fMultiCheckLevel3",
                    "fMultiCheckLevel4",
                    "fMultiCheckLevel5",
                    "fMultiCheckLevel6",
                    "fMultiCheckDate1",
                    "fMultiCheckDate2",
                    "fMultiCheckDate3",
                    "fMultiCheckDate4",
                    "fMultiCheckDate5",
                    "fMultiCheckDate6",
                    "fCurCheckLevel",
                    "fRelateBrId",
                    "fOrderAffirm",
                    "fCashDiscount",
                    "fCheckDate",
                    "fExplanation",
                    "fFetchAdd",
                    "fSettleDate",
                    "fSettleId",
                    "fSelTranType",
                    "fChildren",
                    "fBrId",
                    "fpoOrdBillNo",
                    "fAreaPs",
                    "fClassTypeId",
                    "fTotalCostFor",
                    "flastModyDate",
                    "fManageType",
                    "fSysStatus",
                    "fVersionNo",
                    "fChangeDate",
                    "fChangeCauses",
                    "fChangeMark",
                    "fChangeUser",
                    "fValidaterName",
                    "fConsignee",
                    "fPrintCount",
                    "fExchangeRateType",
                    "fDeliveryPlace",
                    "fAccessoryCount",
                    "fpoMode",
                    "fPlanCategory",
                    "fLastAlterBillNo",
                    "fCloseUser",
                    "fCloseDate",
                    "fCloseCauses",
                    "fSendStatus",
                    "fEnterpriseId"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3PoOrder.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3PoOrder>"
      },
      "K3PoOrderEntry.Filter": {
        "type": "object",
        "title": "K3PoOrderEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fCommitQty": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fPrice": {
                    "type": "boolean"
                  },
                  "fAmount": {
                    "type": "boolean"
                  },
                  "fTaxRate": {
                    "type": "boolean"
                  },
                  "fTax": {
                    "type": "boolean"
                  },
                  "fTaxAmount": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fAuxCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxPrice": {
                    "type": "boolean"
                  },
                  "fAuxQty": {
                    "type": "boolean"
                  },
                  "fSourceEntryId": {
                    "type": "boolean"
                  },
                  "fCess": {
                    "type": "boolean"
                  },
                  "fStockQty": {
                    "type": "boolean"
                  },
                  "fAuxStockQty": {
                    "type": "boolean"
                  },
                  "fMapNumber": {
                    "type": "boolean"
                  },
                  "fMapName": {
                    "type": "boolean"
                  },
                  "fAllAmount": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fAuxPriceDiscount": {
                    "type": "boolean"
                  },
                  "fPriceDiscount": {
                    "type": "boolean"
                  },
                  "fQtyInvoice": {
                    "type": "boolean"
                  },
                  "fQtyInvoiceBase": {
                    "type": "boolean"
                  },
                  "fAuxTaxPrice": {
                    "type": "boolean"
                  },
                  "fTaxPrice": {
                    "type": "boolean"
                  },
                  "fReceiveAmountForCommit": {
                    "type": "boolean"
                  },
                  "fReceiveAmountCommit": {
                    "type": "boolean"
                  },
                  "fSecCoefficient": {
                    "type": "boolean"
                  },
                  "fSecQty": {
                    "type": "boolean"
                  },
                  "fSecCommitQty": {
                    "type": "boolean"
                  },
                  "fSourceTranType": {
                    "type": "boolean"
                  },
                  "fSourceInterId": {
                    "type": "boolean"
                  },
                  "fSourceBillNo": {
                    "type": "boolean"
                  },
                  "fContractInterId": {
                    "type": "boolean"
                  },
                  "fContractEntryId": {
                    "type": "boolean"
                  },
                  "fContractBillNo": {
                    "type": "boolean"
                  },
                  "fmrpLockFlag": {
                    "type": "boolean"
                  },
                  "fAuxQtyInvoice": {
                    "type": "boolean"
                  },
                  "fMrpClosed": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fMapId": {
                    "type": "boolean"
                  },
                  "fsProducingAreaId": {
                    "type": "boolean"
                  },
                  "fAmtDiscount": {
                    "type": "boolean"
                  },
                  "fCheckAmount": {
                    "type": "boolean"
                  },
                  "fMrpAutoClosed": {
                    "type": "boolean"
                  },
                  "fPayApplyAmountForCommit": {
                    "type": "boolean"
                  },
                  "fPayApplyAmountCommit": {
                    "type": "boolean"
                  },
                  "fSecStockQty": {
                    "type": "boolean"
                  },
                  "fSecInvoiceQty": {
                    "type": "boolean"
                  },
                  "fPlanMode": {
                    "type": "boolean"
                  },
                  "fmtoNo": {
                    "type": "boolean"
                  },
                  "fDescount": {
                    "type": "boolean"
                  },
                  "fSupConfirm": {
                    "type": "boolean"
                  },
                  "fSupConDate": {
                    "type": "boolean"
                  },
                  "fSupConQty": {
                    "type": "boolean"
                  },
                  "fSupConMem": {
                    "type": "boolean"
                  },
                  "fSupConFetchDate": {
                    "type": "boolean"
                  },
                  "fSupConfirmor": {
                    "type": "boolean"
                  },
                  "fQualityRptBillId": {
                    "type": "boolean"
                  },
                  "fLockByAlter": {
                    "type": "boolean"
                  },
                  "fDeliveryQty": {
                    "type": "boolean"
                  },
                  "fAuxDeliveryQty": {
                    "type": "boolean"
                  },
                  "fSecDeliveryQty": {
                    "type": "boolean"
                  },
                  "fRejectRefuseNote": {
                    "type": "boolean"
                  },
                  "fRefuseNote": {
                    "type": "boolean"
                  },
                  "fLockBySupplier": {
                    "type": "boolean"
                  },
                  "fEntryAccessoryCount": {
                    "type": "boolean"
                  },
                  "fprInterId": {
                    "type": "boolean"
                  },
                  "fprEntryId": {
                    "type": "boolean"
                  },
                  "fAuxReceiptQty": {
                    "type": "boolean"
                  },
                  "fReceiptQty": {
                    "type": "boolean"
                  },
                  "fAuxReturnQty": {
                    "type": "boolean"
                  },
                  "fReturnQty": {
                    "type": "boolean"
                  },
                  "fCheckMethod": {
                    "type": "boolean"
                  },
                  "fIsCheck": {
                    "type": "boolean"
                  },
                  "fAmountExceptDisCount": {
                    "type": "boolean"
                  },
                  "fAllAmountExceptDisCount": {
                    "type": "boolean"
                  },
                  "fEntryDisCount": {
                    "type": "boolean"
                  },
                  "fCommitAmt": {
                    "type": "boolean"
                  },
                  "fCommitAmtTax": {
                    "type": "boolean"
                  },
                  "fCommitTax": {
                    "type": "boolean"
                  },
                  "fPayReqPayAmountFor": {
                    "type": "boolean"
                  },
                  "fCloseEntryUser": {
                    "type": "boolean"
                  },
                  "fCloseEntryDate": {
                    "type": "boolean"
                  },
                  "fCloseEntryCauses": {
                    "type": "boolean"
                  },
                  "fOutSourceInterId": {
                    "type": "boolean"
                  },
                  "fOutSourceEntryId": {
                    "type": "boolean"
                  },
                  "fOutSourceTranType": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0271": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0272": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0273": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0274": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0275": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0276": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0277": {
                    "type": "boolean"
                  },
                  "fBatchNo": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0279": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0280": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0281": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0282": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0283": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0284": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0285": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0286": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0287": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fEntryId",
                    "fItemId",
                    "fQty",
                    "fCommitQty",
                    "fDate",
                    "fPrice",
                    "fAmount",
                    "fTaxRate",
                    "fTax",
                    "fTaxAmount",
                    "fNote",
                    "fUnitId",
                    "fAuxCommitQty",
                    "fAuxPrice",
                    "fAuxQty",
                    "fSourceEntryId",
                    "fCess",
                    "fStockQty",
                    "fAuxStockQty",
                    "fMapNumber",
                    "fMapName",
                    "fAllAmount",
                    "fAuxPropId",
                    "fAuxPriceDiscount",
                    "fPriceDiscount",
                    "fQtyInvoice",
                    "fQtyInvoiceBase",
                    "fAuxTaxPrice",
                    "fTaxPrice",
                    "fReceiveAmountForCommit",
                    "fReceiveAmountCommit",
                    "fSecCoefficient",
                    "fSecQty",
                    "fSecCommitQty",
                    "fSourceTranType",
                    "fSourceInterId",
                    "fSourceBillNo",
                    "fContractInterId",
                    "fContractEntryId",
                    "fContractBillNo",
                    "fmrpLockFlag",
                    "fAuxQtyInvoice",
                    "fMrpClosed",
                    "fDetailId",
                    "fMapId",
                    "fsProducingAreaId",
                    "fAmtDiscount",
                    "fCheckAmount",
                    "fMrpAutoClosed",
                    "fPayApplyAmountForCommit",
                    "fPayApplyAmountCommit",
                    "fSecStockQty",
                    "fSecInvoiceQty",
                    "fPlanMode",
                    "fmtoNo",
                    "fDescount",
                    "fSupConfirm",
                    "fSupConDate",
                    "fSupConQty",
                    "fSupConMem",
                    "fSupConFetchDate",
                    "fSupConfirmor",
                    "fQualityRptBillId",
                    "fLockByAlter",
                    "fDeliveryQty",
                    "fAuxDeliveryQty",
                    "fSecDeliveryQty",
                    "fRejectRefuseNote",
                    "fRefuseNote",
                    "fLockBySupplier",
                    "fEntryAccessoryCount",
                    "fprInterId",
                    "fprEntryId",
                    "fAuxReceiptQty",
                    "fReceiptQty",
                    "fAuxReturnQty",
                    "fReturnQty",
                    "fCheckMethod",
                    "fIsCheck",
                    "fAmountExceptDisCount",
                    "fAllAmountExceptDisCount",
                    "fEntryDisCount",
                    "fCommitAmt",
                    "fCommitAmtTax",
                    "fCommitTax",
                    "fPayReqPayAmountFor",
                    "fCloseEntryUser",
                    "fCloseEntryDate",
                    "fCloseEntryCauses",
                    "fOutSourceInterId",
                    "fOutSourceEntryId",
                    "fOutSourceTranType",
                    "fEntrySelfP0271",
                    "fEntrySelfP0272",
                    "fEntrySelfP0273",
                    "fEntrySelfP0274",
                    "fEntrySelfP0275",
                    "fEntrySelfP0276",
                    "fEntrySelfP0277",
                    "fBatchNo",
                    "fEntrySelfP0279",
                    "fEntrySelfP0280",
                    "fEntrySelfP0281",
                    "fEntrySelfP0282",
                    "fEntrySelfP0283",
                    "fEntrySelfP0284",
                    "fEntrySelfP0285",
                    "fEntrySelfP0286",
                    "fEntrySelfP0287"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3PoOrderEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3PoOrderEntry>"
      },
      "K3PoOrderEntry.Filter1": {
        "type": "object",
        "title": "K3PoOrderEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3PoOrderEntry.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fCommitQty": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fPrice": {
                    "type": "boolean"
                  },
                  "fAmount": {
                    "type": "boolean"
                  },
                  "fTaxRate": {
                    "type": "boolean"
                  },
                  "fTax": {
                    "type": "boolean"
                  },
                  "fTaxAmount": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fAuxCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxPrice": {
                    "type": "boolean"
                  },
                  "fAuxQty": {
                    "type": "boolean"
                  },
                  "fSourceEntryId": {
                    "type": "boolean"
                  },
                  "fCess": {
                    "type": "boolean"
                  },
                  "fStockQty": {
                    "type": "boolean"
                  },
                  "fAuxStockQty": {
                    "type": "boolean"
                  },
                  "fMapNumber": {
                    "type": "boolean"
                  },
                  "fMapName": {
                    "type": "boolean"
                  },
                  "fAllAmount": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fAuxPriceDiscount": {
                    "type": "boolean"
                  },
                  "fPriceDiscount": {
                    "type": "boolean"
                  },
                  "fQtyInvoice": {
                    "type": "boolean"
                  },
                  "fQtyInvoiceBase": {
                    "type": "boolean"
                  },
                  "fAuxTaxPrice": {
                    "type": "boolean"
                  },
                  "fTaxPrice": {
                    "type": "boolean"
                  },
                  "fReceiveAmountForCommit": {
                    "type": "boolean"
                  },
                  "fReceiveAmountCommit": {
                    "type": "boolean"
                  },
                  "fSecCoefficient": {
                    "type": "boolean"
                  },
                  "fSecQty": {
                    "type": "boolean"
                  },
                  "fSecCommitQty": {
                    "type": "boolean"
                  },
                  "fSourceTranType": {
                    "type": "boolean"
                  },
                  "fSourceInterId": {
                    "type": "boolean"
                  },
                  "fSourceBillNo": {
                    "type": "boolean"
                  },
                  "fContractInterId": {
                    "type": "boolean"
                  },
                  "fContractEntryId": {
                    "type": "boolean"
                  },
                  "fContractBillNo": {
                    "type": "boolean"
                  },
                  "fmrpLockFlag": {
                    "type": "boolean"
                  },
                  "fAuxQtyInvoice": {
                    "type": "boolean"
                  },
                  "fMrpClosed": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fMapId": {
                    "type": "boolean"
                  },
                  "fsProducingAreaId": {
                    "type": "boolean"
                  },
                  "fAmtDiscount": {
                    "type": "boolean"
                  },
                  "fCheckAmount": {
                    "type": "boolean"
                  },
                  "fMrpAutoClosed": {
                    "type": "boolean"
                  },
                  "fPayApplyAmountForCommit": {
                    "type": "boolean"
                  },
                  "fPayApplyAmountCommit": {
                    "type": "boolean"
                  },
                  "fSecStockQty": {
                    "type": "boolean"
                  },
                  "fSecInvoiceQty": {
                    "type": "boolean"
                  },
                  "fPlanMode": {
                    "type": "boolean"
                  },
                  "fmtoNo": {
                    "type": "boolean"
                  },
                  "fDescount": {
                    "type": "boolean"
                  },
                  "fSupConfirm": {
                    "type": "boolean"
                  },
                  "fSupConDate": {
                    "type": "boolean"
                  },
                  "fSupConQty": {
                    "type": "boolean"
                  },
                  "fSupConMem": {
                    "type": "boolean"
                  },
                  "fSupConFetchDate": {
                    "type": "boolean"
                  },
                  "fSupConfirmor": {
                    "type": "boolean"
                  },
                  "fQualityRptBillId": {
                    "type": "boolean"
                  },
                  "fLockByAlter": {
                    "type": "boolean"
                  },
                  "fDeliveryQty": {
                    "type": "boolean"
                  },
                  "fAuxDeliveryQty": {
                    "type": "boolean"
                  },
                  "fSecDeliveryQty": {
                    "type": "boolean"
                  },
                  "fRejectRefuseNote": {
                    "type": "boolean"
                  },
                  "fRefuseNote": {
                    "type": "boolean"
                  },
                  "fLockBySupplier": {
                    "type": "boolean"
                  },
                  "fEntryAccessoryCount": {
                    "type": "boolean"
                  },
                  "fprInterId": {
                    "type": "boolean"
                  },
                  "fprEntryId": {
                    "type": "boolean"
                  },
                  "fAuxReceiptQty": {
                    "type": "boolean"
                  },
                  "fReceiptQty": {
                    "type": "boolean"
                  },
                  "fAuxReturnQty": {
                    "type": "boolean"
                  },
                  "fReturnQty": {
                    "type": "boolean"
                  },
                  "fCheckMethod": {
                    "type": "boolean"
                  },
                  "fIsCheck": {
                    "type": "boolean"
                  },
                  "fAmountExceptDisCount": {
                    "type": "boolean"
                  },
                  "fAllAmountExceptDisCount": {
                    "type": "boolean"
                  },
                  "fEntryDisCount": {
                    "type": "boolean"
                  },
                  "fCommitAmt": {
                    "type": "boolean"
                  },
                  "fCommitAmtTax": {
                    "type": "boolean"
                  },
                  "fCommitTax": {
                    "type": "boolean"
                  },
                  "fPayReqPayAmountFor": {
                    "type": "boolean"
                  },
                  "fCloseEntryUser": {
                    "type": "boolean"
                  },
                  "fCloseEntryDate": {
                    "type": "boolean"
                  },
                  "fCloseEntryCauses": {
                    "type": "boolean"
                  },
                  "fOutSourceInterId": {
                    "type": "boolean"
                  },
                  "fOutSourceEntryId": {
                    "type": "boolean"
                  },
                  "fOutSourceTranType": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0271": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0272": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0273": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0274": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0275": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0276": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0277": {
                    "type": "boolean"
                  },
                  "fBatchNo": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0279": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0280": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0281": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0282": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0283": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0284": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0285": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0286": {
                    "type": "boolean"
                  },
                  "fEntrySelfP0287": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fEntryId",
                    "fItemId",
                    "fQty",
                    "fCommitQty",
                    "fDate",
                    "fPrice",
                    "fAmount",
                    "fTaxRate",
                    "fTax",
                    "fTaxAmount",
                    "fNote",
                    "fUnitId",
                    "fAuxCommitQty",
                    "fAuxPrice",
                    "fAuxQty",
                    "fSourceEntryId",
                    "fCess",
                    "fStockQty",
                    "fAuxStockQty",
                    "fMapNumber",
                    "fMapName",
                    "fAllAmount",
                    "fAuxPropId",
                    "fAuxPriceDiscount",
                    "fPriceDiscount",
                    "fQtyInvoice",
                    "fQtyInvoiceBase",
                    "fAuxTaxPrice",
                    "fTaxPrice",
                    "fReceiveAmountForCommit",
                    "fReceiveAmountCommit",
                    "fSecCoefficient",
                    "fSecQty",
                    "fSecCommitQty",
                    "fSourceTranType",
                    "fSourceInterId",
                    "fSourceBillNo",
                    "fContractInterId",
                    "fContractEntryId",
                    "fContractBillNo",
                    "fmrpLockFlag",
                    "fAuxQtyInvoice",
                    "fMrpClosed",
                    "fDetailId",
                    "fMapId",
                    "fsProducingAreaId",
                    "fAmtDiscount",
                    "fCheckAmount",
                    "fMrpAutoClosed",
                    "fPayApplyAmountForCommit",
                    "fPayApplyAmountCommit",
                    "fSecStockQty",
                    "fSecInvoiceQty",
                    "fPlanMode",
                    "fmtoNo",
                    "fDescount",
                    "fSupConfirm",
                    "fSupConDate",
                    "fSupConQty",
                    "fSupConMem",
                    "fSupConFetchDate",
                    "fSupConfirmor",
                    "fQualityRptBillId",
                    "fLockByAlter",
                    "fDeliveryQty",
                    "fAuxDeliveryQty",
                    "fSecDeliveryQty",
                    "fRejectRefuseNote",
                    "fRefuseNote",
                    "fLockBySupplier",
                    "fEntryAccessoryCount",
                    "fprInterId",
                    "fprEntryId",
                    "fAuxReceiptQty",
                    "fReceiptQty",
                    "fAuxReturnQty",
                    "fReturnQty",
                    "fCheckMethod",
                    "fIsCheck",
                    "fAmountExceptDisCount",
                    "fAllAmountExceptDisCount",
                    "fEntryDisCount",
                    "fCommitAmt",
                    "fCommitAmtTax",
                    "fCommitTax",
                    "fPayReqPayAmountFor",
                    "fCloseEntryUser",
                    "fCloseEntryDate",
                    "fCloseEntryCauses",
                    "fOutSourceInterId",
                    "fOutSourceEntryId",
                    "fOutSourceTranType",
                    "fEntrySelfP0271",
                    "fEntrySelfP0272",
                    "fEntrySelfP0273",
                    "fEntrySelfP0274",
                    "fEntrySelfP0275",
                    "fEntrySelfP0276",
                    "fEntrySelfP0277",
                    "fBatchNo",
                    "fEntrySelfP0279",
                    "fEntrySelfP0280",
                    "fEntrySelfP0281",
                    "fEntrySelfP0282",
                    "fEntrySelfP0283",
                    "fEntrySelfP0284",
                    "fEntrySelfP0285",
                    "fEntrySelfP0286",
                    "fEntrySelfP0287"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3PoOrderEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3PoOrderEntry>"
      },
      "K3SeOrder.Filter": {
        "type": "object",
        "title": "K3SeOrder.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fBillNo": {
                    "type": "boolean"
                  },
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fCustId": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fPayStyle": {
                    "type": "boolean"
                  },
                  "fPayDate": {
                    "type": "boolean"
                  },
                  "fFetchStyle": {
                    "type": "boolean"
                  },
                  "fFetchDate": {
                    "type": "boolean"
                  },
                  "fFetchAdd": {
                    "type": "boolean"
                  },
                  "fSaleStyle": {
                    "type": "boolean"
                  },
                  "fDeptId": {
                    "type": "boolean"
                  },
                  "fEmpId": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fBillerId": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fClosed": {
                    "type": "boolean"
                  },
                  "fTranType": {
                    "type": "boolean"
                  },
                  "fInvoiceClosed": {
                    "type": "boolean"
                  },
                  "fbClosed": {
                    "type": "boolean"
                  },
                  "fMangerId": {
                    "type": "boolean"
                  },
                  "fSettleId": {
                    "type": "boolean"
                  },
                  "fExchangeRate": {
                    "type": "boolean"
                  },
                  "fDiscountType": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fCancellation": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel1": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel2": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel3": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel4": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel5": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel6": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate1": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate2": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate3": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate4": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate5": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate6": {
                    "type": "boolean"
                  },
                  "fCurCheckLevel": {
                    "type": "boolean"
                  },
                  "fTransitAheadTime": {
                    "type": "boolean"
                  },
                  "fpoOrdBillNo": {
                    "type": "boolean"
                  },
                  "fRelateBrId": {
                    "type": "boolean"
                  },
                  "fImport": {
                    "type": "boolean"
                  },
                  "fOrderAffirm": {
                    "type": "boolean"
                  },
                  "fTranStatus": {
                    "type": "boolean"
                  },
                  "fuuid": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "fCashDiscount": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fExplanation": {
                    "type": "boolean"
                  },
                  "fSettleDate": {
                    "type": "boolean"
                  },
                  "fSelTranType": {
                    "type": "boolean"
                  },
                  "fChildren": {
                    "type": "boolean"
                  },
                  "fBrId": {
                    "type": "boolean"
                  },
                  "fAreaPs": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fManageType": {
                    "type": "boolean"
                  },
                  "fSysStatus": {
                    "type": "boolean"
                  },
                  "fVersionNo": {
                    "type": "boolean"
                  },
                  "fChangeDate": {
                    "type": "boolean"
                  },
                  "fChangeCauses": {
                    "type": "boolean"
                  },
                  "fChangeMark": {
                    "type": "boolean"
                  },
                  "fChangeUser": {
                    "type": "boolean"
                  },
                  "fValidaterName": {
                    "type": "boolean"
                  },
                  "fConsignee": {
                    "type": "boolean"
                  },
                  "fDrpRelateTranType": {
                    "type": "boolean"
                  },
                  "fPrintCount": {
                    "type": "boolean"
                  },
                  "fExchangeRateType": {
                    "type": "boolean"
                  },
                  "fCustAddress": {
                    "type": "boolean"
                  },
                  "fPlanCategory": {
                    "type": "boolean"
                  },
                  "fSendStatus": {
                    "type": "boolean"
                  },
                  "fEnterpriseId": {
                    "type": "boolean"
                  },
                  "fxSyncOrder": {
                    "type": "boolean"
                  },
                  "fAccessoryCount": {
                    "type": "boolean"
                  },
                  "fMultiCheckStatus": {
                    "type": "boolean"
                  },
                  "fCloseUser": {
                    "type": "boolean"
                  },
                  "fCloseDate": {
                    "type": "boolean"
                  },
                  "fCloseCauses": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fBillNo",
                    "fCurrencyId",
                    "fCustId",
                    "fDate",
                    "fPayStyle",
                    "fPayDate",
                    "fFetchStyle",
                    "fFetchDate",
                    "fFetchAdd",
                    "fSaleStyle",
                    "fDeptId",
                    "fEmpId",
                    "fCheckerId",
                    "fBillerId",
                    "fNote",
                    "fClosed",
                    "fTranType",
                    "fInvoiceClosed",
                    "fbClosed",
                    "fMangerId",
                    "fSettleId",
                    "fExchangeRate",
                    "fDiscountType",
                    "fStatus",
                    "fCancellation",
                    "fMultiCheckLevel1",
                    "fMultiCheckLevel2",
                    "fMultiCheckLevel3",
                    "fMultiCheckLevel4",
                    "fMultiCheckLevel5",
                    "fMultiCheckLevel6",
                    "fMultiCheckDate1",
                    "fMultiCheckDate2",
                    "fMultiCheckDate3",
                    "fMultiCheckDate4",
                    "fMultiCheckDate5",
                    "fMultiCheckDate6",
                    "fCurCheckLevel",
                    "fTransitAheadTime",
                    "fpoOrdBillNo",
                    "fRelateBrId",
                    "fImport",
                    "fOrderAffirm",
                    "fTranStatus",
                    "fuuid",
                    "fSystemType",
                    "fCashDiscount",
                    "fCheckDate",
                    "fExplanation",
                    "fSettleDate",
                    "fSelTranType",
                    "fChildren",
                    "fBrId",
                    "fAreaPs",
                    "fClassTypeId",
                    "fManageType",
                    "fSysStatus",
                    "fVersionNo",
                    "fChangeDate",
                    "fChangeCauses",
                    "fChangeMark",
                    "fChangeUser",
                    "fValidaterName",
                    "fConsignee",
                    "fDrpRelateTranType",
                    "fPrintCount",
                    "fExchangeRateType",
                    "fCustAddress",
                    "fPlanCategory",
                    "fSendStatus",
                    "fEnterpriseId",
                    "fxSyncOrder",
                    "fAccessoryCount",
                    "fMultiCheckStatus",
                    "fCloseUser",
                    "fCloseDate",
                    "fCloseCauses"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3SeOrder.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3SeOrder>"
      },
      "K3SeOrder.Filter1": {
        "type": "object",
        "title": "K3SeOrder.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3SeOrder.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fBillNo": {
                    "type": "boolean"
                  },
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fCustId": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fPayStyle": {
                    "type": "boolean"
                  },
                  "fPayDate": {
                    "type": "boolean"
                  },
                  "fFetchStyle": {
                    "type": "boolean"
                  },
                  "fFetchDate": {
                    "type": "boolean"
                  },
                  "fFetchAdd": {
                    "type": "boolean"
                  },
                  "fSaleStyle": {
                    "type": "boolean"
                  },
                  "fDeptId": {
                    "type": "boolean"
                  },
                  "fEmpId": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fBillerId": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fClosed": {
                    "type": "boolean"
                  },
                  "fTranType": {
                    "type": "boolean"
                  },
                  "fInvoiceClosed": {
                    "type": "boolean"
                  },
                  "fbClosed": {
                    "type": "boolean"
                  },
                  "fMangerId": {
                    "type": "boolean"
                  },
                  "fSettleId": {
                    "type": "boolean"
                  },
                  "fExchangeRate": {
                    "type": "boolean"
                  },
                  "fDiscountType": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fCancellation": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel1": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel2": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel3": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel4": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel5": {
                    "type": "boolean"
                  },
                  "fMultiCheckLevel6": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate1": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate2": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate3": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate4": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate5": {
                    "type": "boolean"
                  },
                  "fMultiCheckDate6": {
                    "type": "boolean"
                  },
                  "fCurCheckLevel": {
                    "type": "boolean"
                  },
                  "fTransitAheadTime": {
                    "type": "boolean"
                  },
                  "fpoOrdBillNo": {
                    "type": "boolean"
                  },
                  "fRelateBrId": {
                    "type": "boolean"
                  },
                  "fImport": {
                    "type": "boolean"
                  },
                  "fOrderAffirm": {
                    "type": "boolean"
                  },
                  "fTranStatus": {
                    "type": "boolean"
                  },
                  "fuuid": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "fCashDiscount": {
                    "type": "boolean"
                  },
                  "fCheckDate": {
                    "type": "boolean"
                  },
                  "fExplanation": {
                    "type": "boolean"
                  },
                  "fSettleDate": {
                    "type": "boolean"
                  },
                  "fSelTranType": {
                    "type": "boolean"
                  },
                  "fChildren": {
                    "type": "boolean"
                  },
                  "fBrId": {
                    "type": "boolean"
                  },
                  "fAreaPs": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fManageType": {
                    "type": "boolean"
                  },
                  "fSysStatus": {
                    "type": "boolean"
                  },
                  "fVersionNo": {
                    "type": "boolean"
                  },
                  "fChangeDate": {
                    "type": "boolean"
                  },
                  "fChangeCauses": {
                    "type": "boolean"
                  },
                  "fChangeMark": {
                    "type": "boolean"
                  },
                  "fChangeUser": {
                    "type": "boolean"
                  },
                  "fValidaterName": {
                    "type": "boolean"
                  },
                  "fConsignee": {
                    "type": "boolean"
                  },
                  "fDrpRelateTranType": {
                    "type": "boolean"
                  },
                  "fPrintCount": {
                    "type": "boolean"
                  },
                  "fExchangeRateType": {
                    "type": "boolean"
                  },
                  "fCustAddress": {
                    "type": "boolean"
                  },
                  "fPlanCategory": {
                    "type": "boolean"
                  },
                  "fSendStatus": {
                    "type": "boolean"
                  },
                  "fEnterpriseId": {
                    "type": "boolean"
                  },
                  "fxSyncOrder": {
                    "type": "boolean"
                  },
                  "fAccessoryCount": {
                    "type": "boolean"
                  },
                  "fMultiCheckStatus": {
                    "type": "boolean"
                  },
                  "fCloseUser": {
                    "type": "boolean"
                  },
                  "fCloseDate": {
                    "type": "boolean"
                  },
                  "fCloseCauses": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fBillNo",
                    "fCurrencyId",
                    "fCustId",
                    "fDate",
                    "fPayStyle",
                    "fPayDate",
                    "fFetchStyle",
                    "fFetchDate",
                    "fFetchAdd",
                    "fSaleStyle",
                    "fDeptId",
                    "fEmpId",
                    "fCheckerId",
                    "fBillerId",
                    "fNote",
                    "fClosed",
                    "fTranType",
                    "fInvoiceClosed",
                    "fbClosed",
                    "fMangerId",
                    "fSettleId",
                    "fExchangeRate",
                    "fDiscountType",
                    "fStatus",
                    "fCancellation",
                    "fMultiCheckLevel1",
                    "fMultiCheckLevel2",
                    "fMultiCheckLevel3",
                    "fMultiCheckLevel4",
                    "fMultiCheckLevel5",
                    "fMultiCheckLevel6",
                    "fMultiCheckDate1",
                    "fMultiCheckDate2",
                    "fMultiCheckDate3",
                    "fMultiCheckDate4",
                    "fMultiCheckDate5",
                    "fMultiCheckDate6",
                    "fCurCheckLevel",
                    "fTransitAheadTime",
                    "fpoOrdBillNo",
                    "fRelateBrId",
                    "fImport",
                    "fOrderAffirm",
                    "fTranStatus",
                    "fuuid",
                    "fSystemType",
                    "fCashDiscount",
                    "fCheckDate",
                    "fExplanation",
                    "fSettleDate",
                    "fSelTranType",
                    "fChildren",
                    "fBrId",
                    "fAreaPs",
                    "fClassTypeId",
                    "fManageType",
                    "fSysStatus",
                    "fVersionNo",
                    "fChangeDate",
                    "fChangeCauses",
                    "fChangeMark",
                    "fChangeUser",
                    "fValidaterName",
                    "fConsignee",
                    "fDrpRelateTranType",
                    "fPrintCount",
                    "fExchangeRateType",
                    "fCustAddress",
                    "fPlanCategory",
                    "fSendStatus",
                    "fEnterpriseId",
                    "fxSyncOrder",
                    "fAccessoryCount",
                    "fMultiCheckStatus",
                    "fCloseUser",
                    "fCloseDate",
                    "fCloseCauses"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3SeOrder.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3SeOrder>"
      },
      "K3SeOrderEntry.Filter": {
        "type": "object",
        "title": "K3SeOrderEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fCommitQty": {
                    "type": "boolean"
                  },
                  "fPrice": {
                    "type": "boolean"
                  },
                  "fAmount": {
                    "type": "boolean"
                  },
                  "fTaxRate": {
                    "type": "boolean"
                  },
                  "fTaxAmount": {
                    "type": "boolean"
                  },
                  "fTax": {
                    "type": "boolean"
                  },
                  "fDiscount": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fDiscountAmount": {
                    "type": "boolean"
                  },
                  "fInvoiceQty": {
                    "type": "boolean"
                  },
                  "fbCommitQty": {
                    "type": "boolean"
                  },
                  "fTranLeadTime": {
                    "type": "boolean"
                  },
                  "fatpDeduct": {
                    "type": "boolean"
                  },
                  "fCostObjectId": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fAuxBCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxInvoiceQty": {
                    "type": "boolean"
                  },
                  "fAuxPrice": {
                    "type": "boolean"
                  },
                  "fAuxQty": {
                    "type": "boolean"
                  },
                  "fUniDiscount": {
                    "type": "boolean"
                  },
                  "fFinalAmount": {
                    "type": "boolean"
                  },
                  "fSourceEntryId": {
                    "type": "boolean"
                  },
                  "fHaveMrp": {
                    "type": "boolean"
                  },
                  "fStockQty": {
                    "type": "boolean"
                  },
                  "fAuxStockQty": {
                    "type": "boolean"
                  },
                  "fBatchNo": {
                    "type": "boolean"
                  },
                  "fcess": {
                    "type": "boolean"
                  },
                  "fAdviceConsignDate": {
                    "type": "boolean"
                  },
                  "fBomInterId": {
                    "type": "boolean"
                  },
                  "fMapNumber": {
                    "type": "boolean"
                  },
                  "fMapName": {
                    "type": "boolean"
                  },
                  "fLockFlag": {
                    "type": "boolean"
                  },
                  "fInForeCast": {
                    "type": "boolean"
                  },
                  "fAllAmount": {
                    "type": "boolean"
                  },
                  "fAllStdAmount": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fAuxPriceDiscount": {
                    "type": "boolean"
                  },
                  "fPriceDiscount": {
                    "type": "boolean"
                  },
                  "fQtyInvoice": {
                    "type": "boolean"
                  },
                  "fQtyInvoiceBase": {
                    "type": "boolean"
                  },
                  "fTaxAmt": {
                    "type": "boolean"
                  },
                  "fAuxTaxPrice": {
                    "type": "boolean"
                  },
                  "fTaxPrice": {
                    "type": "boolean"
                  },
                  "fReceiveAmountForCommit": {
                    "type": "boolean"
                  },
                  "fReceiveAmountCommit": {
                    "type": "boolean"
                  },
                  "fSecCoefficient": {
                    "type": "boolean"
                  },
                  "fSecQty": {
                    "type": "boolean"
                  },
                  "fSecCommitQty": {
                    "type": "boolean"
                  },
                  "fSourceTranType": {
                    "type": "boolean"
                  },
                  "fSourceInterId": {
                    "type": "boolean"
                  },
                  "fSourceBillNo": {
                    "type": "boolean"
                  },
                  "fContractInterId": {
                    "type": "boolean"
                  },
                  "fContractEntryId": {
                    "type": "boolean"
                  },
                  "fContractBillNo": {
                    "type": "boolean"
                  },
                  "fmrpLockFlag": {
                    "type": "boolean"
                  },
                  "fmrpTrackFlag": {
                    "type": "boolean"
                  },
                  "fOrderCommitQty": {
                    "type": "boolean"
                  },
                  "fOrderSecCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxQtyInvoice": {
                    "type": "boolean"
                  },
                  "fCommitInstall": {
                    "type": "boolean"
                  },
                  "fAuxCommitInstall": {
                    "type": "boolean"
                  },
                  "fMrpClosed": {
                    "type": "boolean"
                  },
                  "fAuxInCommitQty": {
                    "type": "boolean"
                  },
                  "fInCommitQty": {
                    "type": "boolean"
                  },
                  "fSecInCommitQty": {
                    "type": "boolean"
                  },
                  "fApplyCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxApplyCommitQty": {
                    "type": "boolean"
                  },
                  "fSecApplyCommitQty": {
                    "type": "boolean"
                  },
                  "fEvaluated": {
                    "type": "boolean"
                  },
                  "fPackUnitId": {
                    "type": "boolean"
                  },
                  "fPackCount": {
                    "type": "boolean"
                  },
                  "fPackType": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fMapId": {
                    "type": "boolean"
                  },
                  "fGoodsDesc": {
                    "type": "boolean"
                  },
                  "fAmountAfterDiscount": {
                    "type": "boolean"
                  },
                  "fInformCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxInformCommitQty": {
                    "type": "boolean"
                  },
                  "fSecInformCommitQty": {
                    "type": "boolean"
                  },
                  "fPurCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxPurCommitQty": {
                    "type": "boolean"
                  },
                  "fSecPurCommitQty": {
                    "type": "boolean"
                  },
                  "fMrpAutoClosed": {
                    "type": "boolean"
                  },
                  "fSecStockQty": {
                    "type": "boolean"
                  },
                  "fSecInvoiceQty": {
                    "type": "boolean"
                  },
                  "fSecCommitInstall": {
                    "type": "boolean"
                  },
                  "fPlanMode": {
                    "type": "boolean"
                  },
                  "fmtoNo": {
                    "type": "boolean"
                  },
                  "fOrderBillNo": {
                    "type": "boolean"
                  },
                  "fOrderEntryId": {
                    "type": "boolean"
                  },
                  "fDiffQtyClosed": {
                    "type": "boolean"
                  },
                  "fbomCategory": {
                    "type": "boolean"
                  },
                  "fOrderBomStatus": {
                    "type": "boolean"
                  },
                  "fOrderBomInterId": {
                    "type": "boolean"
                  },
                  "fIsAltered": {
                    "type": "boolean"
                  },
                  "fAmountExceptDisCount": {
                    "type": "boolean"
                  },
                  "fAllAmountExceptDisCount": {
                    "type": "boolean"
                  },
                  "fEntryDisCount": {
                    "type": "boolean"
                  },
                  "fCommitAmt": {
                    "type": "boolean"
                  },
                  "fCommitAmtTax": {
                    "type": "boolean"
                  },
                  "fCommitTax": {
                    "type": "boolean"
                  },
                  "fIsAps": {
                    "type": "boolean"
                  },
                  "fMeetDelivery": {
                    "type": "boolean"
                  },
                  "fOrderBomEntryId": {
                    "type": "boolean"
                  },
                  "fOutSourceInterId": {
                    "type": "boolean"
                  },
                  "fOutSourceEntryId": {
                    "type": "boolean"
                  },
                  "fOutSourceTranType": {
                    "type": "boolean"
                  },
                  "fEntrySelfS0168": {
                    "type": "boolean"
                  },
                  "fEntrySelfS0169": {
                    "type": "boolean"
                  },
                  "fEntrySelfS0170": {
                    "type": "boolean"
                  },
                  "fEntrySelfS0171": {
                    "type": "boolean"
                  },
                  "fEntryAccessoryCount": {
                    "type": "boolean"
                  },
                  "fCloseEntryUser": {
                    "type": "boolean"
                  },
                  "fCloseEntryDate": {
                    "type": "boolean"
                  },
                  "fCloseEntryCauses": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fEntryId",
                    "fItemId",
                    "fQty",
                    "fCommitQty",
                    "fPrice",
                    "fAmount",
                    "fTaxRate",
                    "fTaxAmount",
                    "fTax",
                    "fDiscount",
                    "fNote",
                    "fDate",
                    "fDiscountAmount",
                    "fInvoiceQty",
                    "fbCommitQty",
                    "fTranLeadTime",
                    "fatpDeduct",
                    "fCostObjectId",
                    "fUnitId",
                    "fAuxBCommitQty",
                    "fAuxCommitQty",
                    "fAuxInvoiceQty",
                    "fAuxPrice",
                    "fAuxQty",
                    "fUniDiscount",
                    "fFinalAmount",
                    "fSourceEntryId",
                    "fHaveMrp",
                    "fStockQty",
                    "fAuxStockQty",
                    "fBatchNo",
                    "fcess",
                    "fAdviceConsignDate",
                    "fBomInterId",
                    "fMapNumber",
                    "fMapName",
                    "fLockFlag",
                    "fInForeCast",
                    "fAllAmount",
                    "fAllStdAmount",
                    "fAuxPropId",
                    "fAuxPriceDiscount",
                    "fPriceDiscount",
                    "fQtyInvoice",
                    "fQtyInvoiceBase",
                    "fTaxAmt",
                    "fAuxTaxPrice",
                    "fTaxPrice",
                    "fReceiveAmountForCommit",
                    "fReceiveAmountCommit",
                    "fSecCoefficient",
                    "fSecQty",
                    "fSecCommitQty",
                    "fSourceTranType",
                    "fSourceInterId",
                    "fSourceBillNo",
                    "fContractInterId",
                    "fContractEntryId",
                    "fContractBillNo",
                    "fmrpLockFlag",
                    "fmrpTrackFlag",
                    "fOrderCommitQty",
                    "fOrderSecCommitQty",
                    "fAuxQtyInvoice",
                    "fCommitInstall",
                    "fAuxCommitInstall",
                    "fMrpClosed",
                    "fAuxInCommitQty",
                    "fInCommitQty",
                    "fSecInCommitQty",
                    "fApplyCommitQty",
                    "fAuxApplyCommitQty",
                    "fSecApplyCommitQty",
                    "fEvaluated",
                    "fPackUnitId",
                    "fPackCount",
                    "fPackType",
                    "fDetailId",
                    "fMapId",
                    "fGoodsDesc",
                    "fAmountAfterDiscount",
                    "fInformCommitQty",
                    "fAuxInformCommitQty",
                    "fSecInformCommitQty",
                    "fPurCommitQty",
                    "fAuxPurCommitQty",
                    "fSecPurCommitQty",
                    "fMrpAutoClosed",
                    "fSecStockQty",
                    "fSecInvoiceQty",
                    "fSecCommitInstall",
                    "fPlanMode",
                    "fmtoNo",
                    "fOrderBillNo",
                    "fOrderEntryId",
                    "fDiffQtyClosed",
                    "fbomCategory",
                    "fOrderBomStatus",
                    "fOrderBomInterId",
                    "fIsAltered",
                    "fAmountExceptDisCount",
                    "fAllAmountExceptDisCount",
                    "fEntryDisCount",
                    "fCommitAmt",
                    "fCommitAmtTax",
                    "fCommitTax",
                    "fIsAps",
                    "fMeetDelivery",
                    "fOrderBomEntryId",
                    "fOutSourceInterId",
                    "fOutSourceEntryId",
                    "fOutSourceTranType",
                    "fEntrySelfS0168",
                    "fEntrySelfS0169",
                    "fEntrySelfS0170",
                    "fEntrySelfS0171",
                    "fEntryAccessoryCount",
                    "fCloseEntryUser",
                    "fCloseEntryDate",
                    "fCloseEntryCauses"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3SeOrderEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3SeOrderEntry>"
      },
      "K3SeOrderEntry.Filter1": {
        "type": "object",
        "title": "K3SeOrderEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3SeOrderEntry.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fQty": {
                    "type": "boolean"
                  },
                  "fCommitQty": {
                    "type": "boolean"
                  },
                  "fPrice": {
                    "type": "boolean"
                  },
                  "fAmount": {
                    "type": "boolean"
                  },
                  "fTaxRate": {
                    "type": "boolean"
                  },
                  "fTaxAmount": {
                    "type": "boolean"
                  },
                  "fTax": {
                    "type": "boolean"
                  },
                  "fDiscount": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fDiscountAmount": {
                    "type": "boolean"
                  },
                  "fInvoiceQty": {
                    "type": "boolean"
                  },
                  "fbCommitQty": {
                    "type": "boolean"
                  },
                  "fTranLeadTime": {
                    "type": "boolean"
                  },
                  "fatpDeduct": {
                    "type": "boolean"
                  },
                  "fCostObjectId": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fAuxBCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxInvoiceQty": {
                    "type": "boolean"
                  },
                  "fAuxPrice": {
                    "type": "boolean"
                  },
                  "fAuxQty": {
                    "type": "boolean"
                  },
                  "fUniDiscount": {
                    "type": "boolean"
                  },
                  "fFinalAmount": {
                    "type": "boolean"
                  },
                  "fSourceEntryId": {
                    "type": "boolean"
                  },
                  "fHaveMrp": {
                    "type": "boolean"
                  },
                  "fStockQty": {
                    "type": "boolean"
                  },
                  "fAuxStockQty": {
                    "type": "boolean"
                  },
                  "fBatchNo": {
                    "type": "boolean"
                  },
                  "fcess": {
                    "type": "boolean"
                  },
                  "fAdviceConsignDate": {
                    "type": "boolean"
                  },
                  "fBomInterId": {
                    "type": "boolean"
                  },
                  "fMapNumber": {
                    "type": "boolean"
                  },
                  "fMapName": {
                    "type": "boolean"
                  },
                  "fLockFlag": {
                    "type": "boolean"
                  },
                  "fInForeCast": {
                    "type": "boolean"
                  },
                  "fAllAmount": {
                    "type": "boolean"
                  },
                  "fAllStdAmount": {
                    "type": "boolean"
                  },
                  "fAuxPropId": {
                    "type": "boolean"
                  },
                  "fAuxPriceDiscount": {
                    "type": "boolean"
                  },
                  "fPriceDiscount": {
                    "type": "boolean"
                  },
                  "fQtyInvoice": {
                    "type": "boolean"
                  },
                  "fQtyInvoiceBase": {
                    "type": "boolean"
                  },
                  "fTaxAmt": {
                    "type": "boolean"
                  },
                  "fAuxTaxPrice": {
                    "type": "boolean"
                  },
                  "fTaxPrice": {
                    "type": "boolean"
                  },
                  "fReceiveAmountForCommit": {
                    "type": "boolean"
                  },
                  "fReceiveAmountCommit": {
                    "type": "boolean"
                  },
                  "fSecCoefficient": {
                    "type": "boolean"
                  },
                  "fSecQty": {
                    "type": "boolean"
                  },
                  "fSecCommitQty": {
                    "type": "boolean"
                  },
                  "fSourceTranType": {
                    "type": "boolean"
                  },
                  "fSourceInterId": {
                    "type": "boolean"
                  },
                  "fSourceBillNo": {
                    "type": "boolean"
                  },
                  "fContractInterId": {
                    "type": "boolean"
                  },
                  "fContractEntryId": {
                    "type": "boolean"
                  },
                  "fContractBillNo": {
                    "type": "boolean"
                  },
                  "fmrpLockFlag": {
                    "type": "boolean"
                  },
                  "fmrpTrackFlag": {
                    "type": "boolean"
                  },
                  "fOrderCommitQty": {
                    "type": "boolean"
                  },
                  "fOrderSecCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxQtyInvoice": {
                    "type": "boolean"
                  },
                  "fCommitInstall": {
                    "type": "boolean"
                  },
                  "fAuxCommitInstall": {
                    "type": "boolean"
                  },
                  "fMrpClosed": {
                    "type": "boolean"
                  },
                  "fAuxInCommitQty": {
                    "type": "boolean"
                  },
                  "fInCommitQty": {
                    "type": "boolean"
                  },
                  "fSecInCommitQty": {
                    "type": "boolean"
                  },
                  "fApplyCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxApplyCommitQty": {
                    "type": "boolean"
                  },
                  "fSecApplyCommitQty": {
                    "type": "boolean"
                  },
                  "fEvaluated": {
                    "type": "boolean"
                  },
                  "fPackUnitId": {
                    "type": "boolean"
                  },
                  "fPackCount": {
                    "type": "boolean"
                  },
                  "fPackType": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fMapId": {
                    "type": "boolean"
                  },
                  "fGoodsDesc": {
                    "type": "boolean"
                  },
                  "fAmountAfterDiscount": {
                    "type": "boolean"
                  },
                  "fInformCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxInformCommitQty": {
                    "type": "boolean"
                  },
                  "fSecInformCommitQty": {
                    "type": "boolean"
                  },
                  "fPurCommitQty": {
                    "type": "boolean"
                  },
                  "fAuxPurCommitQty": {
                    "type": "boolean"
                  },
                  "fSecPurCommitQty": {
                    "type": "boolean"
                  },
                  "fMrpAutoClosed": {
                    "type": "boolean"
                  },
                  "fSecStockQty": {
                    "type": "boolean"
                  },
                  "fSecInvoiceQty": {
                    "type": "boolean"
                  },
                  "fSecCommitInstall": {
                    "type": "boolean"
                  },
                  "fPlanMode": {
                    "type": "boolean"
                  },
                  "fmtoNo": {
                    "type": "boolean"
                  },
                  "fOrderBillNo": {
                    "type": "boolean"
                  },
                  "fOrderEntryId": {
                    "type": "boolean"
                  },
                  "fDiffQtyClosed": {
                    "type": "boolean"
                  },
                  "fbomCategory": {
                    "type": "boolean"
                  },
                  "fOrderBomStatus": {
                    "type": "boolean"
                  },
                  "fOrderBomInterId": {
                    "type": "boolean"
                  },
                  "fIsAltered": {
                    "type": "boolean"
                  },
                  "fAmountExceptDisCount": {
                    "type": "boolean"
                  },
                  "fAllAmountExceptDisCount": {
                    "type": "boolean"
                  },
                  "fEntryDisCount": {
                    "type": "boolean"
                  },
                  "fCommitAmt": {
                    "type": "boolean"
                  },
                  "fCommitAmtTax": {
                    "type": "boolean"
                  },
                  "fCommitTax": {
                    "type": "boolean"
                  },
                  "fIsAps": {
                    "type": "boolean"
                  },
                  "fMeetDelivery": {
                    "type": "boolean"
                  },
                  "fOrderBomEntryId": {
                    "type": "boolean"
                  },
                  "fOutSourceInterId": {
                    "type": "boolean"
                  },
                  "fOutSourceEntryId": {
                    "type": "boolean"
                  },
                  "fOutSourceTranType": {
                    "type": "boolean"
                  },
                  "fEntrySelfS0168": {
                    "type": "boolean"
                  },
                  "fEntrySelfS0169": {
                    "type": "boolean"
                  },
                  "fEntrySelfS0170": {
                    "type": "boolean"
                  },
                  "fEntrySelfS0171": {
                    "type": "boolean"
                  },
                  "fEntryAccessoryCount": {
                    "type": "boolean"
                  },
                  "fCloseEntryUser": {
                    "type": "boolean"
                  },
                  "fCloseEntryDate": {
                    "type": "boolean"
                  },
                  "fCloseEntryCauses": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fEntryId",
                    "fItemId",
                    "fQty",
                    "fCommitQty",
                    "fPrice",
                    "fAmount",
                    "fTaxRate",
                    "fTaxAmount",
                    "fTax",
                    "fDiscount",
                    "fNote",
                    "fDate",
                    "fDiscountAmount",
                    "fInvoiceQty",
                    "fbCommitQty",
                    "fTranLeadTime",
                    "fatpDeduct",
                    "fCostObjectId",
                    "fUnitId",
                    "fAuxBCommitQty",
                    "fAuxCommitQty",
                    "fAuxInvoiceQty",
                    "fAuxPrice",
                    "fAuxQty",
                    "fUniDiscount",
                    "fFinalAmount",
                    "fSourceEntryId",
                    "fHaveMrp",
                    "fStockQty",
                    "fAuxStockQty",
                    "fBatchNo",
                    "fcess",
                    "fAdviceConsignDate",
                    "fBomInterId",
                    "fMapNumber",
                    "fMapName",
                    "fLockFlag",
                    "fInForeCast",
                    "fAllAmount",
                    "fAllStdAmount",
                    "fAuxPropId",
                    "fAuxPriceDiscount",
                    "fPriceDiscount",
                    "fQtyInvoice",
                    "fQtyInvoiceBase",
                    "fTaxAmt",
                    "fAuxTaxPrice",
                    "fTaxPrice",
                    "fReceiveAmountForCommit",
                    "fReceiveAmountCommit",
                    "fSecCoefficient",
                    "fSecQty",
                    "fSecCommitQty",
                    "fSourceTranType",
                    "fSourceInterId",
                    "fSourceBillNo",
                    "fContractInterId",
                    "fContractEntryId",
                    "fContractBillNo",
                    "fmrpLockFlag",
                    "fmrpTrackFlag",
                    "fOrderCommitQty",
                    "fOrderSecCommitQty",
                    "fAuxQtyInvoice",
                    "fCommitInstall",
                    "fAuxCommitInstall",
                    "fMrpClosed",
                    "fAuxInCommitQty",
                    "fInCommitQty",
                    "fSecInCommitQty",
                    "fApplyCommitQty",
                    "fAuxApplyCommitQty",
                    "fSecApplyCommitQty",
                    "fEvaluated",
                    "fPackUnitId",
                    "fPackCount",
                    "fPackType",
                    "fDetailId",
                    "fMapId",
                    "fGoodsDesc",
                    "fAmountAfterDiscount",
                    "fInformCommitQty",
                    "fAuxInformCommitQty",
                    "fSecInformCommitQty",
                    "fPurCommitQty",
                    "fAuxPurCommitQty",
                    "fSecPurCommitQty",
                    "fMrpAutoClosed",
                    "fSecStockQty",
                    "fSecInvoiceQty",
                    "fSecCommitInstall",
                    "fPlanMode",
                    "fmtoNo",
                    "fOrderBillNo",
                    "fOrderEntryId",
                    "fDiffQtyClosed",
                    "fbomCategory",
                    "fOrderBomStatus",
                    "fOrderBomInterId",
                    "fIsAltered",
                    "fAmountExceptDisCount",
                    "fAllAmountExceptDisCount",
                    "fEntryDisCount",
                    "fCommitAmt",
                    "fCommitAmtTax",
                    "fCommitTax",
                    "fIsAps",
                    "fMeetDelivery",
                    "fOrderBomEntryId",
                    "fOutSourceInterId",
                    "fOutSourceEntryId",
                    "fOutSourceTranType",
                    "fEntrySelfS0168",
                    "fEntrySelfS0169",
                    "fEntrySelfS0170",
                    "fEntrySelfS0171",
                    "fEntryAccessoryCount",
                    "fCloseEntryUser",
                    "fCloseEntryDate",
                    "fCloseEntryCauses"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3SeOrderEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3SeOrderEntry>"
      },
      "K3VIcStockBillList.Filter": {
        "type": "object",
        "title": "K3VIcStockBillList.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3VIcStockBillList.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3VIcStockBillList>"
      },
      "K3VIcStockBillList.Filter1": {
        "type": "object",
        "title": "K3VIcStockBillList.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3VIcStockBillList.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "rowId": {
                    "type": "boolean"
                  },
                  "interId": {
                    "type": "boolean"
                  },
                  "entryId": {
                    "type": "boolean"
                  },
                  "auditFlag": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "billDateKey": {
                    "type": "boolean"
                  },
                  "partnerName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "itemNumber": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  },
                  "unitName": {
                    "type": "boolean"
                  },
                  "qty": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "amount": {
                    "type": "boolean"
                  },
                  "stockName": {
                    "type": "boolean"
                  },
                  "stockPlaceName": {
                    "type": "boolean"
                  },
                  "note": {
                    "type": "boolean"
                  },
                  "salespersonName": {
                    "type": "boolean"
                  },
                  "orderQty": {
                    "type": "boolean"
                  },
                  "commitQty": {
                    "type": "boolean"
                  },
                  "pendingQty": {
                    "type": "boolean"
                  },
                  "invQty": {
                    "type": "boolean"
                  },
                  "supplyName": {
                    "type": "boolean"
                  },
                  "tranType": {
                    "type": "boolean"
                  },
                  "statusCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "rowId",
                    "interId",
                    "entryId",
                    "auditFlag",
                    "billDate",
                    "billDateKey",
                    "partnerName",
                    "billNo",
                    "itemNumber",
                    "itemName",
                    "model",
                    "unitName",
                    "qty",
                    "price",
                    "amount",
                    "stockName",
                    "stockPlaceName",
                    "note",
                    "salespersonName",
                    "orderQty",
                    "commitQty",
                    "pendingQty",
                    "invQty",
                    "supplyName",
                    "tranType",
                    "statusCode"
                  ],
                  "example": "rowId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3VIcStockBillList.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3VIcStockBillList>"
      },
      "K3TAccessory.Filter": {
        "type": "object",
        "title": "K3TAccessory.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fid": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fDesc": {
                    "type": "boolean"
                  },
                  "fFileName": {
                    "type": "boolean"
                  },
                  "fFile": {
                    "type": "boolean"
                  },
                  "fFileSize": {
                    "type": "boolean"
                  },
                  "fUploader": {
                    "type": "boolean"
                  },
                  "fUploadTime": {
                    "type": "boolean"
                  },
                  "fChecker": {
                    "type": "boolean"
                  },
                  "fIsPic": {
                    "type": "boolean"
                  },
                  "fVersion": {
                    "type": "boolean"
                  },
                  "fSaveMode": {
                    "type": "boolean"
                  },
                  "fPage": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fShowFileName": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fid",
                    "fTypeId",
                    "fItemId",
                    "fDesc",
                    "fFileName",
                    "fFile",
                    "fFileSize",
                    "fUploader",
                    "fUploadTime",
                    "fChecker",
                    "fIsPic",
                    "fVersion",
                    "fSaveMode",
                    "fPage",
                    "fEntryId",
                    "fShowFileName"
                  ],
                  "example": "fid"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TAccessory.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TAccessory>"
      },
      "K3TAccessory.Filter1": {
        "type": "object",
        "title": "K3TAccessory.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TAccessory.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fid": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fDesc": {
                    "type": "boolean"
                  },
                  "fFileName": {
                    "type": "boolean"
                  },
                  "fFile": {
                    "type": "boolean"
                  },
                  "fFileSize": {
                    "type": "boolean"
                  },
                  "fUploader": {
                    "type": "boolean"
                  },
                  "fUploadTime": {
                    "type": "boolean"
                  },
                  "fChecker": {
                    "type": "boolean"
                  },
                  "fIsPic": {
                    "type": "boolean"
                  },
                  "fVersion": {
                    "type": "boolean"
                  },
                  "fSaveMode": {
                    "type": "boolean"
                  },
                  "fPage": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fShowFileName": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fid",
                    "fTypeId",
                    "fItemId",
                    "fDesc",
                    "fFileName",
                    "fFile",
                    "fFileSize",
                    "fUploader",
                    "fUploadTime",
                    "fChecker",
                    "fIsPic",
                    "fVersion",
                    "fSaveMode",
                    "fPage",
                    "fEntryId",
                    "fShowFileName"
                  ],
                  "example": "fid"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TAccessory.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TAccessory>"
      },
      "K3TAccount.Filter": {
        "type": "object",
        "title": "K3TAccount.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fAccountId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fLevel": {
                    "type": "boolean"
                  },
                  "fDetail": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fRootId": {
                    "type": "boolean"
                  },
                  "fGroupId": {
                    "type": "boolean"
                  },
                  "fdc": {
                    "type": "boolean"
                  },
                  "fHelperCode": {
                    "type": "boolean"
                  },
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fAdjustRate": {
                    "type": "boolean"
                  },
                  "fEarnAccountId": {
                    "type": "boolean"
                  },
                  "fQuantities": {
                    "type": "boolean"
                  },
                  "fUnitGroupId": {
                    "type": "boolean"
                  },
                  "fMeasureUnitId": {
                    "type": "boolean"
                  },
                  "fIsCash": {
                    "type": "boolean"
                  },
                  "fIsBank": {
                    "type": "boolean"
                  },
                  "fJournal": {
                    "type": "boolean"
                  },
                  "fContact": {
                    "type": "boolean"
                  },
                  "fIsCashFlow": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fAcnt": {
                    "type": "boolean"
                  },
                  "fLoan": {
                    "type": "boolean"
                  },
                  "fDpst": {
                    "type": "boolean"
                  },
                  "fStatedDpst": {
                    "type": "boolean"
                  },
                  "fInterest": {
                    "type": "boolean"
                  },
                  "fIsAcnt": {
                    "type": "boolean"
                  },
                  "fIsBudget": {
                    "type": "boolean"
                  },
                  "fAcntId": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fAcctInt": {
                    "type": "boolean"
                  },
                  "fIntRate": {
                    "type": "boolean"
                  },
                  "fLastIntDate": {
                    "type": "boolean"
                  },
                  "fAcntType": {
                    "type": "boolean"
                  },
                  "fTradeNum": {
                    "type": "boolean"
                  },
                  "fControl": {
                    "type": "boolean"
                  },
                  "fViewMsg": {
                    "type": "boolean"
                  },
                  "fMessage": {
                    "type": "boolean"
                  },
                  "fDelete": {
                    "type": "boolean"
                  },
                  "fIsBusi": {
                    "type": "boolean"
                  },
                  "fFullName": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "fControlSystem": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fcfItemId": {
                    "type": "boolean"
                  },
                  "fSubCfItemId": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fIsParallel": {
                    "type": "boolean"
                  },
                  "fIsDiffItem": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fAccountId",
                    "fNumber",
                    "fName",
                    "fLevel",
                    "fDetail",
                    "fParentId",
                    "fRootId",
                    "fGroupId",
                    "fdc",
                    "fHelperCode",
                    "fCurrencyId",
                    "fAdjustRate",
                    "fEarnAccountId",
                    "fQuantities",
                    "fUnitGroupId",
                    "fMeasureUnitId",
                    "fIsCash",
                    "fIsBank",
                    "fJournal",
                    "fContact",
                    "fIsCashFlow",
                    "fDetailId",
                    "fAcnt",
                    "fLoan",
                    "fDpst",
                    "fStatedDpst",
                    "fInterest",
                    "fIsAcnt",
                    "fIsBudget",
                    "fAcntId",
                    "fBrNo",
                    "fAcctInt",
                    "fIntRate",
                    "fLastIntDate",
                    "fAcntType",
                    "fTradeNum",
                    "fControl",
                    "fViewMsg",
                    "fMessage",
                    "fDelete",
                    "fIsBusi",
                    "fFullName",
                    "fSystemType",
                    "fControlSystem",
                    "uuid",
                    "fcfItemId",
                    "fSubCfItemId",
                    "fClassTypeId",
                    "fIsParallel",
                    "fIsDiffItem"
                  ],
                  "example": "fAccountId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TAccount.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TAccount>"
      },
      "K3TAccount.Filter1": {
        "type": "object",
        "title": "K3TAccount.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TAccount.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fAccountId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fLevel": {
                    "type": "boolean"
                  },
                  "fDetail": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fRootId": {
                    "type": "boolean"
                  },
                  "fGroupId": {
                    "type": "boolean"
                  },
                  "fdc": {
                    "type": "boolean"
                  },
                  "fHelperCode": {
                    "type": "boolean"
                  },
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fAdjustRate": {
                    "type": "boolean"
                  },
                  "fEarnAccountId": {
                    "type": "boolean"
                  },
                  "fQuantities": {
                    "type": "boolean"
                  },
                  "fUnitGroupId": {
                    "type": "boolean"
                  },
                  "fMeasureUnitId": {
                    "type": "boolean"
                  },
                  "fIsCash": {
                    "type": "boolean"
                  },
                  "fIsBank": {
                    "type": "boolean"
                  },
                  "fJournal": {
                    "type": "boolean"
                  },
                  "fContact": {
                    "type": "boolean"
                  },
                  "fIsCashFlow": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fAcnt": {
                    "type": "boolean"
                  },
                  "fLoan": {
                    "type": "boolean"
                  },
                  "fDpst": {
                    "type": "boolean"
                  },
                  "fStatedDpst": {
                    "type": "boolean"
                  },
                  "fInterest": {
                    "type": "boolean"
                  },
                  "fIsAcnt": {
                    "type": "boolean"
                  },
                  "fIsBudget": {
                    "type": "boolean"
                  },
                  "fAcntId": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fAcctInt": {
                    "type": "boolean"
                  },
                  "fIntRate": {
                    "type": "boolean"
                  },
                  "fLastIntDate": {
                    "type": "boolean"
                  },
                  "fAcntType": {
                    "type": "boolean"
                  },
                  "fTradeNum": {
                    "type": "boolean"
                  },
                  "fControl": {
                    "type": "boolean"
                  },
                  "fViewMsg": {
                    "type": "boolean"
                  },
                  "fMessage": {
                    "type": "boolean"
                  },
                  "fDelete": {
                    "type": "boolean"
                  },
                  "fIsBusi": {
                    "type": "boolean"
                  },
                  "fFullName": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "fControlSystem": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fcfItemId": {
                    "type": "boolean"
                  },
                  "fSubCfItemId": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fIsParallel": {
                    "type": "boolean"
                  },
                  "fIsDiffItem": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fAccountId",
                    "fNumber",
                    "fName",
                    "fLevel",
                    "fDetail",
                    "fParentId",
                    "fRootId",
                    "fGroupId",
                    "fdc",
                    "fHelperCode",
                    "fCurrencyId",
                    "fAdjustRate",
                    "fEarnAccountId",
                    "fQuantities",
                    "fUnitGroupId",
                    "fMeasureUnitId",
                    "fIsCash",
                    "fIsBank",
                    "fJournal",
                    "fContact",
                    "fIsCashFlow",
                    "fDetailId",
                    "fAcnt",
                    "fLoan",
                    "fDpst",
                    "fStatedDpst",
                    "fInterest",
                    "fIsAcnt",
                    "fIsBudget",
                    "fAcntId",
                    "fBrNo",
                    "fAcctInt",
                    "fIntRate",
                    "fLastIntDate",
                    "fAcntType",
                    "fTradeNum",
                    "fControl",
                    "fViewMsg",
                    "fMessage",
                    "fDelete",
                    "fIsBusi",
                    "fFullName",
                    "fSystemType",
                    "fControlSystem",
                    "uuid",
                    "fcfItemId",
                    "fSubCfItemId",
                    "fClassTypeId",
                    "fIsParallel",
                    "fIsDiffItem"
                  ],
                  "example": "fAccountId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TAccount.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TAccount>"
      },
      "K3TBaseEmp.Filter": {
        "type": "object",
        "title": "K3TBaseEmp.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fGender": {
                    "type": "boolean"
                  },
                  "fBirthday": {
                    "type": "boolean"
                  },
                  "fEmail": {
                    "type": "boolean"
                  },
                  "fAddress": {
                    "type": "boolean"
                  },
                  "fPhone": {
                    "type": "boolean"
                  },
                  "fid": {
                    "type": "boolean"
                  },
                  "fDuty": {
                    "type": "boolean"
                  },
                  "fDegree": {
                    "type": "boolean"
                  },
                  "fHireDate": {
                    "type": "boolean"
                  },
                  "fLeaveDate": {
                    "type": "boolean"
                  },
                  "fEmpGroupId": {
                    "type": "boolean"
                  },
                  "fItemDepId": {
                    "type": "boolean"
                  },
                  "fBankId": {
                    "type": "boolean"
                  },
                  "fBankAccount": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fDepartmentId": {
                    "type": "boolean"
                  },
                  "fEmpGroup": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fIsCreditMgr": {
                    "type": "boolean"
                  },
                  "fCreditPeriod": {
                    "type": "boolean"
                  },
                  "fCreditLevel": {
                    "type": "boolean"
                  },
                  "fProfessionalGroup": {
                    "type": "boolean"
                  },
                  "fOperationGroup": {
                    "type": "boolean"
                  },
                  "fJobTypeId": {
                    "type": "boolean"
                  },
                  "fAllotPercent": {
                    "type": "boolean"
                  },
                  "fCreditDays": {
                    "type": "boolean"
                  },
                  "fCreditAmount": {
                    "type": "boolean"
                  },
                  "fOtherArAcctId": {
                    "type": "boolean"
                  },
                  "fOtherApAcctId": {
                    "type": "boolean"
                  },
                  "fPreArAcctId": {
                    "type": "boolean"
                  },
                  "fPreApAcctId": {
                    "type": "boolean"
                  },
                  "fMobilePhone": {
                    "type": "boolean"
                  },
                  "fAccountName": {
                    "type": "boolean"
                  },
                  "fPersonalBank": {
                    "type": "boolean"
                  },
                  "fAllotWeight": {
                    "type": "boolean"
                  },
                  "fProvinceId": {
                    "type": "boolean"
                  },
                  "fCityId": {
                    "type": "boolean"
                  },
                  "fmfgCardNo": {
                    "type": "boolean"
                  },
                  "fFingerprintCardNo": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fGender",
                    "fBirthday",
                    "fEmail",
                    "fAddress",
                    "fPhone",
                    "fid",
                    "fDuty",
                    "fDegree",
                    "fHireDate",
                    "fLeaveDate",
                    "fEmpGroupId",
                    "fItemDepId",
                    "fBankId",
                    "fBankAccount",
                    "fNote",
                    "fBrNo",
                    "fName",
                    "fParentId",
                    "fDeleted",
                    "fDepartmentId",
                    "fEmpGroup",
                    "fNumber",
                    "fShortNumber",
                    "fIsCreditMgr",
                    "fCreditPeriod",
                    "fCreditLevel",
                    "fProfessionalGroup",
                    "fOperationGroup",
                    "fJobTypeId",
                    "fAllotPercent",
                    "fCreditDays",
                    "fCreditAmount",
                    "fOtherArAcctId",
                    "fOtherApAcctId",
                    "fPreArAcctId",
                    "fPreApAcctId",
                    "fMobilePhone",
                    "fAccountName",
                    "fPersonalBank",
                    "fAllotWeight",
                    "fProvinceId",
                    "fCityId",
                    "fmfgCardNo",
                    "fFingerprintCardNo"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TBaseEmp.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TBaseEmp>"
      },
      "K3TBaseEmp.Filter1": {
        "type": "object",
        "title": "K3TBaseEmp.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TBaseEmp.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fGender": {
                    "type": "boolean"
                  },
                  "fBirthday": {
                    "type": "boolean"
                  },
                  "fEmail": {
                    "type": "boolean"
                  },
                  "fAddress": {
                    "type": "boolean"
                  },
                  "fPhone": {
                    "type": "boolean"
                  },
                  "fid": {
                    "type": "boolean"
                  },
                  "fDuty": {
                    "type": "boolean"
                  },
                  "fDegree": {
                    "type": "boolean"
                  },
                  "fHireDate": {
                    "type": "boolean"
                  },
                  "fLeaveDate": {
                    "type": "boolean"
                  },
                  "fEmpGroupId": {
                    "type": "boolean"
                  },
                  "fItemDepId": {
                    "type": "boolean"
                  },
                  "fBankId": {
                    "type": "boolean"
                  },
                  "fBankAccount": {
                    "type": "boolean"
                  },
                  "fNote": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fDepartmentId": {
                    "type": "boolean"
                  },
                  "fEmpGroup": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fIsCreditMgr": {
                    "type": "boolean"
                  },
                  "fCreditPeriod": {
                    "type": "boolean"
                  },
                  "fCreditLevel": {
                    "type": "boolean"
                  },
                  "fProfessionalGroup": {
                    "type": "boolean"
                  },
                  "fOperationGroup": {
                    "type": "boolean"
                  },
                  "fJobTypeId": {
                    "type": "boolean"
                  },
                  "fAllotPercent": {
                    "type": "boolean"
                  },
                  "fCreditDays": {
                    "type": "boolean"
                  },
                  "fCreditAmount": {
                    "type": "boolean"
                  },
                  "fOtherArAcctId": {
                    "type": "boolean"
                  },
                  "fOtherApAcctId": {
                    "type": "boolean"
                  },
                  "fPreArAcctId": {
                    "type": "boolean"
                  },
                  "fPreApAcctId": {
                    "type": "boolean"
                  },
                  "fMobilePhone": {
                    "type": "boolean"
                  },
                  "fAccountName": {
                    "type": "boolean"
                  },
                  "fPersonalBank": {
                    "type": "boolean"
                  },
                  "fAllotWeight": {
                    "type": "boolean"
                  },
                  "fProvinceId": {
                    "type": "boolean"
                  },
                  "fCityId": {
                    "type": "boolean"
                  },
                  "fmfgCardNo": {
                    "type": "boolean"
                  },
                  "fFingerprintCardNo": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fGender",
                    "fBirthday",
                    "fEmail",
                    "fAddress",
                    "fPhone",
                    "fid",
                    "fDuty",
                    "fDegree",
                    "fHireDate",
                    "fLeaveDate",
                    "fEmpGroupId",
                    "fItemDepId",
                    "fBankId",
                    "fBankAccount",
                    "fNote",
                    "fBrNo",
                    "fName",
                    "fParentId",
                    "fDeleted",
                    "fDepartmentId",
                    "fEmpGroup",
                    "fNumber",
                    "fShortNumber",
                    "fIsCreditMgr",
                    "fCreditPeriod",
                    "fCreditLevel",
                    "fProfessionalGroup",
                    "fOperationGroup",
                    "fJobTypeId",
                    "fAllotPercent",
                    "fCreditDays",
                    "fCreditAmount",
                    "fOtherArAcctId",
                    "fOtherApAcctId",
                    "fPreArAcctId",
                    "fPreApAcctId",
                    "fMobilePhone",
                    "fAccountName",
                    "fPersonalBank",
                    "fAllotWeight",
                    "fProvinceId",
                    "fCityId",
                    "fmfgCardNo",
                    "fFingerprintCardNo"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TBaseEmp.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TBaseEmp>"
      },
      "K3TBaseUser.Filter": {
        "type": "object",
        "title": "K3TBaseUser.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fUserId": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fsid": {
                    "type": "boolean"
                  },
                  "fPrimaryGroup": {
                    "type": "boolean"
                  },
                  "fDescription": {
                    "type": "boolean"
                  },
                  "fForbidden": {
                    "type": "boolean"
                  },
                  "fEmpId": {
                    "type": "boolean"
                  },
                  "fDataVokeType": {
                    "type": "boolean"
                  },
                  "fIsNeedOffline": {
                    "type": "boolean"
                  },
                  "fRightChanged": {
                    "type": "boolean"
                  },
                  "fOfflineRefeshEachTime": {
                    "type": "boolean"
                  },
                  "fSafeMode": {
                    "type": "boolean"
                  },
                  "fhrUser": {
                    "type": "boolean"
                  },
                  "fssoUsername": {
                    "type": "boolean"
                  },
                  "fscPwd": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fAccessUuid": {
                    "type": "boolean"
                  },
                  "fuInValidDate": {
                    "type": "boolean"
                  },
                  "fPwCreateDate": {
                    "type": "boolean"
                  },
                  "fPwValidDay": {
                    "type": "boolean"
                  },
                  "fAuthRight": {
                    "type": "boolean"
                  },
                  "fUserTypeId": {
                    "type": "boolean"
                  },
                  "fPortUser": {
                    "type": "boolean"
                  },
                  "fSupplierId": {
                    "type": "boolean"
                  },
                  "fCustomerId": {
                    "type": "boolean"
                  },
                  "fimUserName": {
                    "type": "boolean"
                  },
                  "fCreateTime": {
                    "type": "boolean"
                  },
                  "fSupUnit": {
                    "type": "boolean"
                  },
                  "fyzjSafeMode": {
                    "type": "boolean"
                  },
                  "ffxMsgUser": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fUserId",
                    "fName",
                    "fsid",
                    "fPrimaryGroup",
                    "fDescription",
                    "fForbidden",
                    "fEmpId",
                    "fDataVokeType",
                    "fIsNeedOffline",
                    "fRightChanged",
                    "fOfflineRefeshEachTime",
                    "fSafeMode",
                    "fhrUser",
                    "fssoUsername",
                    "fscPwd",
                    "uuid",
                    "fAccessUuid",
                    "fuInValidDate",
                    "fPwCreateDate",
                    "fPwValidDay",
                    "fAuthRight",
                    "fUserTypeId",
                    "fPortUser",
                    "fSupplierId",
                    "fCustomerId",
                    "fimUserName",
                    "fCreateTime",
                    "fSupUnit",
                    "fyzjSafeMode",
                    "ffxMsgUser"
                  ],
                  "example": "fUserId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TBaseUser.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TBaseUser>"
      },
      "K3TBaseUser.Filter1": {
        "type": "object",
        "title": "K3TBaseUser.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TBaseUser.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fUserId": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fsid": {
                    "type": "boolean"
                  },
                  "fPrimaryGroup": {
                    "type": "boolean"
                  },
                  "fDescription": {
                    "type": "boolean"
                  },
                  "fForbidden": {
                    "type": "boolean"
                  },
                  "fEmpId": {
                    "type": "boolean"
                  },
                  "fDataVokeType": {
                    "type": "boolean"
                  },
                  "fIsNeedOffline": {
                    "type": "boolean"
                  },
                  "fRightChanged": {
                    "type": "boolean"
                  },
                  "fOfflineRefeshEachTime": {
                    "type": "boolean"
                  },
                  "fSafeMode": {
                    "type": "boolean"
                  },
                  "fhrUser": {
                    "type": "boolean"
                  },
                  "fssoUsername": {
                    "type": "boolean"
                  },
                  "fscPwd": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fAccessUuid": {
                    "type": "boolean"
                  },
                  "fuInValidDate": {
                    "type": "boolean"
                  },
                  "fPwCreateDate": {
                    "type": "boolean"
                  },
                  "fPwValidDay": {
                    "type": "boolean"
                  },
                  "fAuthRight": {
                    "type": "boolean"
                  },
                  "fUserTypeId": {
                    "type": "boolean"
                  },
                  "fPortUser": {
                    "type": "boolean"
                  },
                  "fSupplierId": {
                    "type": "boolean"
                  },
                  "fCustomerId": {
                    "type": "boolean"
                  },
                  "fimUserName": {
                    "type": "boolean"
                  },
                  "fCreateTime": {
                    "type": "boolean"
                  },
                  "fSupUnit": {
                    "type": "boolean"
                  },
                  "fyzjSafeMode": {
                    "type": "boolean"
                  },
                  "ffxMsgUser": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fUserId",
                    "fName",
                    "fsid",
                    "fPrimaryGroup",
                    "fDescription",
                    "fForbidden",
                    "fEmpId",
                    "fDataVokeType",
                    "fIsNeedOffline",
                    "fRightChanged",
                    "fOfflineRefeshEachTime",
                    "fSafeMode",
                    "fhrUser",
                    "fssoUsername",
                    "fscPwd",
                    "uuid",
                    "fAccessUuid",
                    "fuInValidDate",
                    "fPwCreateDate",
                    "fPwValidDay",
                    "fAuthRight",
                    "fUserTypeId",
                    "fPortUser",
                    "fSupplierId",
                    "fCustomerId",
                    "fimUserName",
                    "fCreateTime",
                    "fSupUnit",
                    "fyzjSafeMode",
                    "ffxMsgUser"
                  ],
                  "example": "fUserId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TBaseUser.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TBaseUser>"
      },
      "K3TCurrency.Filter": {
        "type": "object",
        "title": "K3TCurrency.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fOperator": {
                    "type": "boolean"
                  },
                  "fExchangeRate": {
                    "type": "boolean"
                  },
                  "fScale": {
                    "type": "boolean"
                  },
                  "fFixRate": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fControl": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fCurrencyId",
                    "fNumber",
                    "fName",
                    "fOperator",
                    "fExchangeRate",
                    "fScale",
                    "fFixRate",
                    "fBrNo",
                    "fControl",
                    "fDeleted",
                    "fSystemType",
                    "uuid",
                    "fClassTypeId"
                  ],
                  "example": "fCurrencyId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TCurrency.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TCurrency>"
      },
      "K3TCurrency.Filter1": {
        "type": "object",
        "title": "K3TCurrency.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TCurrency.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fOperator": {
                    "type": "boolean"
                  },
                  "fExchangeRate": {
                    "type": "boolean"
                  },
                  "fScale": {
                    "type": "boolean"
                  },
                  "fFixRate": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fControl": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fCurrencyId",
                    "fNumber",
                    "fName",
                    "fOperator",
                    "fExchangeRate",
                    "fScale",
                    "fFixRate",
                    "fBrNo",
                    "fControl",
                    "fDeleted",
                    "fSystemType",
                    "uuid",
                    "fClassTypeId"
                  ],
                  "example": "fCurrencyId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TCurrency.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TCurrency>"
      },
      "K3TDepartment.Filter": {
        "type": "object",
        "title": "K3TDepartment.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fNumber",
                    "fName",
                    "fParentId",
                    "fDeleted",
                    "fShortNumber",
                    "fBrNo"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TDepartment.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TDepartment>"
      },
      "K3TDepartment.Filter1": {
        "type": "object",
        "title": "K3TDepartment.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TDepartment.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fNumber",
                    "fName",
                    "fParentId",
                    "fDeleted",
                    "fShortNumber",
                    "fBrNo"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TDepartment.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TDepartment>"
      },
      "K3TIcItemBase.Filter": {
        "type": "object",
        "title": "K3TIcItemBase.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fErpClsId": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fUnitGroupId": {
                    "type": "boolean"
                  },
                  "fDefaultLoc": {
                    "type": "boolean"
                  },
                  "fspid": {
                    "type": "boolean"
                  },
                  "fSource": {
                    "type": "boolean"
                  },
                  "fQtyDecimal": {
                    "type": "boolean"
                  },
                  "fLowLimit": {
                    "type": "boolean"
                  },
                  "fHighLimit": {
                    "type": "boolean"
                  },
                  "fSecInv": {
                    "type": "boolean"
                  },
                  "fUseState": {
                    "type": "boolean"
                  },
                  "fIsEquipment": {
                    "type": "boolean"
                  },
                  "fEquipmentNum": {
                    "type": "boolean"
                  },
                  "fIsSparePart": {
                    "type": "boolean"
                  },
                  "fFullName": {
                    "type": "boolean"
                  },
                  "fSecUnitId": {
                    "type": "boolean"
                  },
                  "fSecCoefficient": {
                    "type": "boolean"
                  },
                  "fSecUnitDecimal": {
                    "type": "boolean"
                  },
                  "fAlias": {
                    "type": "boolean"
                  },
                  "fOrderUnitId": {
                    "type": "boolean"
                  },
                  "fSaleUnitId": {
                    "type": "boolean"
                  },
                  "fStoreUnitId": {
                    "type": "boolean"
                  },
                  "fProductUnitId": {
                    "type": "boolean"
                  },
                  "fApproveNo": {
                    "type": "boolean"
                  },
                  "fAuxClassId": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fPreDeadLine": {
                    "type": "boolean"
                  },
                  "fSerialClassId": {
                    "type": "boolean"
                  },
                  "fDefaultReadyLoc": {
                    "type": "boolean"
                  },
                  "fspidReady": {
                    "type": "boolean"
                  },
                  "fdsManagerId": {
                    "type": "boolean"
                  },
                  "fForbBitBarcodeEdit": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fErpClsId",
                    "fUnitId",
                    "fUnitGroupId",
                    "fDefaultLoc",
                    "fspid",
                    "fSource",
                    "fQtyDecimal",
                    "fLowLimit",
                    "fHighLimit",
                    "fSecInv",
                    "fUseState",
                    "fIsEquipment",
                    "fEquipmentNum",
                    "fIsSparePart",
                    "fFullName",
                    "fSecUnitId",
                    "fSecCoefficient",
                    "fSecUnitDecimal",
                    "fAlias",
                    "fOrderUnitId",
                    "fSaleUnitId",
                    "fStoreUnitId",
                    "fProductUnitId",
                    "fApproveNo",
                    "fAuxClassId",
                    "fTypeId",
                    "fPreDeadLine",
                    "fSerialClassId",
                    "fDefaultReadyLoc",
                    "fspidReady",
                    "fdsManagerId",
                    "fForbBitBarcodeEdit"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TIcItemBase.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TIcItemBase>"
      },
      "K3TIcItemBase.Filter1": {
        "type": "object",
        "title": "K3TIcItemBase.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TIcItemBase.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fErpClsId": {
                    "type": "boolean"
                  },
                  "fUnitId": {
                    "type": "boolean"
                  },
                  "fUnitGroupId": {
                    "type": "boolean"
                  },
                  "fDefaultLoc": {
                    "type": "boolean"
                  },
                  "fspid": {
                    "type": "boolean"
                  },
                  "fSource": {
                    "type": "boolean"
                  },
                  "fQtyDecimal": {
                    "type": "boolean"
                  },
                  "fLowLimit": {
                    "type": "boolean"
                  },
                  "fHighLimit": {
                    "type": "boolean"
                  },
                  "fSecInv": {
                    "type": "boolean"
                  },
                  "fUseState": {
                    "type": "boolean"
                  },
                  "fIsEquipment": {
                    "type": "boolean"
                  },
                  "fEquipmentNum": {
                    "type": "boolean"
                  },
                  "fIsSparePart": {
                    "type": "boolean"
                  },
                  "fFullName": {
                    "type": "boolean"
                  },
                  "fSecUnitId": {
                    "type": "boolean"
                  },
                  "fSecCoefficient": {
                    "type": "boolean"
                  },
                  "fSecUnitDecimal": {
                    "type": "boolean"
                  },
                  "fAlias": {
                    "type": "boolean"
                  },
                  "fOrderUnitId": {
                    "type": "boolean"
                  },
                  "fSaleUnitId": {
                    "type": "boolean"
                  },
                  "fStoreUnitId": {
                    "type": "boolean"
                  },
                  "fProductUnitId": {
                    "type": "boolean"
                  },
                  "fApproveNo": {
                    "type": "boolean"
                  },
                  "fAuxClassId": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fPreDeadLine": {
                    "type": "boolean"
                  },
                  "fSerialClassId": {
                    "type": "boolean"
                  },
                  "fDefaultReadyLoc": {
                    "type": "boolean"
                  },
                  "fspidReady": {
                    "type": "boolean"
                  },
                  "fdsManagerId": {
                    "type": "boolean"
                  },
                  "fForbBitBarcodeEdit": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fErpClsId",
                    "fUnitId",
                    "fUnitGroupId",
                    "fDefaultLoc",
                    "fspid",
                    "fSource",
                    "fQtyDecimal",
                    "fLowLimit",
                    "fHighLimit",
                    "fSecInv",
                    "fUseState",
                    "fIsEquipment",
                    "fEquipmentNum",
                    "fIsSparePart",
                    "fFullName",
                    "fSecUnitId",
                    "fSecCoefficient",
                    "fSecUnitDecimal",
                    "fAlias",
                    "fOrderUnitId",
                    "fSaleUnitId",
                    "fStoreUnitId",
                    "fProductUnitId",
                    "fApproveNo",
                    "fAuxClassId",
                    "fTypeId",
                    "fPreDeadLine",
                    "fSerialClassId",
                    "fDefaultReadyLoc",
                    "fspidReady",
                    "fdsManagerId",
                    "fForbBitBarcodeEdit"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TIcItemBase.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TIcItemBase>"
      },
      "K3TIcItemCore.Filter": {
        "type": "object",
        "title": "K3TIcItemCore.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fModel": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fHelpCode": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fModifyTime": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fTopId": {
                    "type": "boolean"
                  },
                  "frp": {
                    "type": "boolean"
                  },
                  "fOmortize": {
                    "type": "boolean"
                  },
                  "fOmortizeScale": {
                    "type": "boolean"
                  },
                  "fForSale": {
                    "type": "boolean"
                  },
                  "fStaCost": {
                    "type": "boolean"
                  },
                  "fOrderPrice": {
                    "type": "boolean"
                  },
                  "fOrderMethod": {
                    "type": "boolean"
                  },
                  "fPriceFixingType": {
                    "type": "boolean"
                  },
                  "fSalePriceFixingType": {
                    "type": "boolean"
                  },
                  "fPerWastage": {
                    "type": "boolean"
                  },
                  "farAcctId": {
                    "type": "boolean"
                  },
                  "fPlanPriceMethod": {
                    "type": "boolean"
                  },
                  "fPlanClass": {
                    "type": "boolean"
                  },
                  "fpy": {
                    "type": "boolean"
                  },
                  "fPinYin": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fModel",
                    "fName",
                    "fHelpCode",
                    "fDeleted",
                    "fShortNumber",
                    "fNumber",
                    "fModifyTime",
                    "fParentId",
                    "fBrNo",
                    "fTopId",
                    "frp",
                    "fOmortize",
                    "fOmortizeScale",
                    "fForSale",
                    "fStaCost",
                    "fOrderPrice",
                    "fOrderMethod",
                    "fPriceFixingType",
                    "fSalePriceFixingType",
                    "fPerWastage",
                    "farAcctId",
                    "fPlanPriceMethod",
                    "fPlanClass",
                    "fpy",
                    "fPinYin"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TIcItemCore.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TIcItemCore>"
      },
      "K3TIcItemCore.Filter1": {
        "type": "object",
        "title": "K3TIcItemCore.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TIcItemCore.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fModel": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fHelpCode": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fModifyTime": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fTopId": {
                    "type": "boolean"
                  },
                  "frp": {
                    "type": "boolean"
                  },
                  "fOmortize": {
                    "type": "boolean"
                  },
                  "fOmortizeScale": {
                    "type": "boolean"
                  },
                  "fForSale": {
                    "type": "boolean"
                  },
                  "fStaCost": {
                    "type": "boolean"
                  },
                  "fOrderPrice": {
                    "type": "boolean"
                  },
                  "fOrderMethod": {
                    "type": "boolean"
                  },
                  "fPriceFixingType": {
                    "type": "boolean"
                  },
                  "fSalePriceFixingType": {
                    "type": "boolean"
                  },
                  "fPerWastage": {
                    "type": "boolean"
                  },
                  "farAcctId": {
                    "type": "boolean"
                  },
                  "fPlanPriceMethod": {
                    "type": "boolean"
                  },
                  "fPlanClass": {
                    "type": "boolean"
                  },
                  "fpy": {
                    "type": "boolean"
                  },
                  "fPinYin": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fModel",
                    "fName",
                    "fHelpCode",
                    "fDeleted",
                    "fShortNumber",
                    "fNumber",
                    "fModifyTime",
                    "fParentId",
                    "fBrNo",
                    "fTopId",
                    "frp",
                    "fOmortize",
                    "fOmortizeScale",
                    "fForSale",
                    "fStaCost",
                    "fOrderPrice",
                    "fOrderMethod",
                    "fPriceFixingType",
                    "fSalePriceFixingType",
                    "fPerWastage",
                    "farAcctId",
                    "fPlanPriceMethod",
                    "fPlanClass",
                    "fpy",
                    "fPinYin"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TIcItemCore.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TIcItemCore>"
      },
      "K3TIcItemCustom.Filter": {
        "type": "object",
        "title": "K3TIcItemCustom.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "f_102": {
                    "type": "boolean"
                  },
                  "f_103": {
                    "type": "boolean"
                  },
                  "f_105": {
                    "type": "boolean"
                  },
                  "f_106": {
                    "type": "boolean"
                  },
                  "f_107": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "f_102",
                    "f_103",
                    "f_105",
                    "f_106",
                    "f_107"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TIcItemCustom.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TIcItemCustom>"
      },
      "K3TIcItemCustom.Filter1": {
        "type": "object",
        "title": "K3TIcItemCustom.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TIcItemCustom.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "f_102": {
                    "type": "boolean"
                  },
                  "f_103": {
                    "type": "boolean"
                  },
                  "f_105": {
                    "type": "boolean"
                  },
                  "f_106": {
                    "type": "boolean"
                  },
                  "f_107": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "f_102",
                    "f_103",
                    "f_105",
                    "f_106",
                    "f_107"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TIcItemCustom.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TIcItemCustom>"
      },
      "K3TMeasureUnit.Filter": {
        "type": "object",
        "title": "K3TMeasureUnit.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fMeasureUnitId": {
                    "type": "boolean"
                  },
                  "fUnitGroupId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fAuxClass": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fConversation": {
                    "type": "boolean"
                  },
                  "fCoefficient": {
                    "type": "boolean"
                  },
                  "fPrecision": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fOperDate": {
                    "type": "boolean"
                  },
                  "fScale": {
                    "type": "boolean"
                  },
                  "fStandard": {
                    "type": "boolean"
                  },
                  "fControl": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fNameEn": {
                    "type": "boolean"
                  },
                  "fNameEnPlu": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fMeasureUnitId",
                    "fUnitGroupId",
                    "fNumber",
                    "fAuxClass",
                    "fName",
                    "fConversation",
                    "fCoefficient",
                    "fPrecision",
                    "fBrNo",
                    "fItemId",
                    "fParentId",
                    "fDeleted",
                    "fShortNumber",
                    "fOperDate",
                    "fScale",
                    "fStandard",
                    "fControl",
                    "fSystemType",
                    "uuid",
                    "fNameEn",
                    "fNameEnPlu"
                  ],
                  "example": "fMeasureUnitId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TMeasureUnit.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TMeasureUnit>"
      },
      "K3TMeasureUnit.Filter1": {
        "type": "object",
        "title": "K3TMeasureUnit.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TMeasureUnit.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fMeasureUnitId": {
                    "type": "boolean"
                  },
                  "fUnitGroupId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fAuxClass": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fConversation": {
                    "type": "boolean"
                  },
                  "fCoefficient": {
                    "type": "boolean"
                  },
                  "fPrecision": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fOperDate": {
                    "type": "boolean"
                  },
                  "fScale": {
                    "type": "boolean"
                  },
                  "fStandard": {
                    "type": "boolean"
                  },
                  "fControl": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fNameEn": {
                    "type": "boolean"
                  },
                  "fNameEnPlu": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fMeasureUnitId",
                    "fUnitGroupId",
                    "fNumber",
                    "fAuxClass",
                    "fName",
                    "fConversation",
                    "fCoefficient",
                    "fPrecision",
                    "fBrNo",
                    "fItemId",
                    "fParentId",
                    "fDeleted",
                    "fShortNumber",
                    "fOperDate",
                    "fScale",
                    "fStandard",
                    "fControl",
                    "fSystemType",
                    "uuid",
                    "fNameEn",
                    "fNameEnPlu"
                  ],
                  "example": "fMeasureUnitId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TMeasureUnit.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TMeasureUnit>"
      },
      "K3TOrganization.Filter": {
        "type": "object",
        "title": "K3TOrganization.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fAddress": {
                    "type": "boolean"
                  },
                  "fCity": {
                    "type": "boolean"
                  },
                  "fProvince": {
                    "type": "boolean"
                  },
                  "fCountry": {
                    "type": "boolean"
                  },
                  "fPostalCode": {
                    "type": "boolean"
                  },
                  "fPhone": {
                    "type": "boolean"
                  },
                  "fFax": {
                    "type": "boolean"
                  },
                  "fEmail": {
                    "type": "boolean"
                  },
                  "fHomePage": {
                    "type": "boolean"
                  },
                  "fCreditLimit": {
                    "type": "boolean"
                  },
                  "fTaxId": {
                    "type": "boolean"
                  },
                  "fBank": {
                    "type": "boolean"
                  },
                  "fAccount": {
                    "type": "boolean"
                  },
                  "fBankNumber": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fBoundAttr": {
                    "type": "boolean"
                  },
                  "fErpClsId": {
                    "type": "boolean"
                  },
                  "fShortName": {
                    "type": "boolean"
                  },
                  "fPriorityId": {
                    "type": "boolean"
                  },
                  "fpoGroupId": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fLanguageId": {
                    "type": "boolean"
                  },
                  "fRegionId": {
                    "type": "boolean"
                  },
                  "fTrade": {
                    "type": "boolean"
                  },
                  "fMinPoValue": {
                    "type": "boolean"
                  },
                  "fMaxDebitDate": {
                    "type": "boolean"
                  },
                  "fLegalPerson": {
                    "type": "boolean"
                  },
                  "fContact": {
                    "type": "boolean"
                  },
                  "fContactAcct": {
                    "type": "boolean"
                  },
                  "fPhoneAcct": {
                    "type": "boolean"
                  },
                  "fFaxAcct": {
                    "type": "boolean"
                  },
                  "fZipAcct": {
                    "type": "boolean"
                  },
                  "fEmailAcct": {
                    "type": "boolean"
                  },
                  "fAddrAcct": {
                    "type": "boolean"
                  },
                  "fTax": {
                    "type": "boolean"
                  },
                  "fCyId": {
                    "type": "boolean"
                  },
                  "fSetId": {
                    "type": "boolean"
                  },
                  "fSetDLineId": {
                    "type": "boolean"
                  },
                  "fTaxNum": {
                    "type": "boolean"
                  },
                  "fPriceClsId": {
                    "type": "boolean"
                  },
                  "fOperId": {
                    "type": "boolean"
                  },
                  "fciqNumber": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fSaleMode": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "farAccountId": {
                    "type": "boolean"
                  },
                  "fapAccountId": {
                    "type": "boolean"
                  },
                  "fpreAcctId": {
                    "type": "boolean"
                  },
                  "flastTradeAmount": {
                    "type": "boolean"
                  },
                  "flastRpAmount": {
                    "type": "boolean"
                  },
                  "ffavorPolicy": {
                    "type": "boolean"
                  },
                  "fdepartment": {
                    "type": "boolean"
                  },
                  "femployee": {
                    "type": "boolean"
                  },
                  "fcorperate": {
                    "type": "boolean"
                  },
                  "fbeginTradeDate": {
                    "type": "boolean"
                  },
                  "fendTradeDate": {
                    "type": "boolean"
                  },
                  "flastTradeDate": {
                    "type": "boolean"
                  },
                  "flastReceiveDate": {
                    "type": "boolean"
                  },
                  "fcashDiscount": {
                    "type": "boolean"
                  },
                  "fcurrencyId": {
                    "type": "boolean"
                  },
                  "fmaxDealAmount": {
                    "type": "boolean"
                  },
                  "fminForeReceiveRate": {
                    "type": "boolean"
                  },
                  "fminReserverate": {
                    "type": "boolean"
                  },
                  "fdebtLevel": {
                    "type": "boolean"
                  },
                  "fCarryingAos": {
                    "type": "boolean"
                  },
                  "fIsCreditMgr": {
                    "type": "boolean"
                  },
                  "fCreditPeriod": {
                    "type": "boolean"
                  },
                  "fCreditLevel": {
                    "type": "boolean"
                  },
                  "fPayTaxAcctId": {
                    "type": "boolean"
                  },
                  "fValueAddRate": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fCreditDays": {
                    "type": "boolean"
                  },
                  "fCreditAmount": {
                    "type": "boolean"
                  },
                  "fStockIdAssign": {
                    "type": "boolean"
                  },
                  "fStockIdInst": {
                    "type": "boolean"
                  },
                  "fStockIdKeep": {
                    "type": "boolean"
                  },
                  "fPaperPeriod": {
                    "type": "boolean"
                  },
                  "fAlarmPeriod": {
                    "type": "boolean"
                  },
                  "fLicAndPermit": {
                    "type": "boolean"
                  },
                  "fOtherArAcctId": {
                    "type": "boolean"
                  },
                  "fOtherApAcctId": {
                    "type": "boolean"
                  },
                  "fPreApAcctId": {
                    "type": "boolean"
                  },
                  "fSaleId": {
                    "type": "boolean"
                  },
                  "fHelpCode": {
                    "type": "boolean"
                  },
                  "fNameEn": {
                    "type": "boolean"
                  },
                  "fAddrEn": {
                    "type": "boolean"
                  },
                  "fciqCode": {
                    "type": "boolean"
                  },
                  "fRegion": {
                    "type": "boolean"
                  },
                  "fMobilePhone": {
                    "type": "boolean"
                  },
                  "fPayCondition": {
                    "type": "boolean"
                  },
                  "fManageType": {
                    "type": "boolean"
                  },
                  "fClass": {
                    "type": "boolean"
                  },
                  "fValue": {
                    "type": "boolean"
                  },
                  "fRegUserId": {
                    "type": "boolean"
                  },
                  "fLastModifyDate": {
                    "type": "boolean"
                  },
                  "fRecentContactDate": {
                    "type": "boolean"
                  },
                  "fRegDate": {
                    "type": "boolean"
                  },
                  "fFlat": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fCoSupplierId": {
                    "type": "boolean"
                  },
                  "fShareStatus": {
                    "type": "boolean"
                  },
                  "fCustType": {
                    "type": "boolean"
                  },
                  "fSuperiorId": {
                    "type": "boolean"
                  },
                  "fClueId": {
                    "type": "boolean"
                  },
                  "fLastMailTime": {
                    "type": "boolean"
                  },
                  "fCityId": {
                    "type": "boolean"
                  },
                  "fProvinceId": {
                    "type": "boolean"
                  },
                  "fSex": {
                    "type": "boolean"
                  },
                  "fMobile": {
                    "type": "boolean"
                  },
                  "fDuty": {
                    "type": "boolean"
                  },
                  "fWorkSite": {
                    "type": "boolean"
                  },
                  "fWorkUnit": {
                    "type": "boolean"
                  },
                  "fIncomeLevel": {
                    "type": "boolean"
                  },
                  "fStratum": {
                    "type": "boolean"
                  },
                  "fAge": {
                    "type": "boolean"
                  },
                  "fBirthday": {
                    "type": "boolean"
                  },
                  "fNation": {
                    "type": "boolean"
                  },
                  "fBizPostCode": {
                    "type": "boolean"
                  },
                  "fim": {
                    "type": "boolean"
                  },
                  "fBizPhone": {
                    "type": "boolean"
                  },
                  "fLastActivityTime": {
                    "type": "boolean"
                  },
                  "fLastSvTime": {
                    "type": "boolean"
                  },
                  "fLastCallTime": {
                    "type": "boolean"
                  },
                  "fLastSmsTime": {
                    "type": "boolean"
                  },
                  "fExpired": {
                    "type": "boolean"
                  },
                  "fLastAssignTime": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fAddress",
                    "fCity",
                    "fProvince",
                    "fCountry",
                    "fPostalCode",
                    "fPhone",
                    "fFax",
                    "fEmail",
                    "fHomePage",
                    "fCreditLimit",
                    "fTaxId",
                    "fBank",
                    "fAccount",
                    "fBankNumber",
                    "fBrNo",
                    "fBoundAttr",
                    "fErpClsId",
                    "fShortName",
                    "fPriorityId",
                    "fpoGroupId",
                    "fStatus",
                    "fLanguageId",
                    "fRegionId",
                    "fTrade",
                    "fMinPoValue",
                    "fMaxDebitDate",
                    "fLegalPerson",
                    "fContact",
                    "fContactAcct",
                    "fPhoneAcct",
                    "fFaxAcct",
                    "fZipAcct",
                    "fEmailAcct",
                    "fAddrAcct",
                    "fTax",
                    "fCyId",
                    "fSetId",
                    "fSetDLineId",
                    "fTaxNum",
                    "fPriceClsId",
                    "fOperId",
                    "fciqNumber",
                    "fDeleted",
                    "fSaleMode",
                    "fName",
                    "fNumber",
                    "fParentId",
                    "fShortNumber",
                    "farAccountId",
                    "fapAccountId",
                    "fpreAcctId",
                    "flastTradeAmount",
                    "flastRpAmount",
                    "ffavorPolicy",
                    "fdepartment",
                    "femployee",
                    "fcorperate",
                    "fbeginTradeDate",
                    "fendTradeDate",
                    "flastTradeDate",
                    "flastReceiveDate",
                    "fcashDiscount",
                    "fcurrencyId",
                    "fmaxDealAmount",
                    "fminForeReceiveRate",
                    "fminReserverate",
                    "fdebtLevel",
                    "fCarryingAos",
                    "fIsCreditMgr",
                    "fCreditPeriod",
                    "fCreditLevel",
                    "fPayTaxAcctId",
                    "fValueAddRate",
                    "fTypeId",
                    "fCreditDays",
                    "fCreditAmount",
                    "fStockIdAssign",
                    "fStockIdInst",
                    "fStockIdKeep",
                    "fPaperPeriod",
                    "fAlarmPeriod",
                    "fLicAndPermit",
                    "fOtherArAcctId",
                    "fOtherApAcctId",
                    "fPreApAcctId",
                    "fSaleId",
                    "fHelpCode",
                    "fNameEn",
                    "fAddrEn",
                    "fciqCode",
                    "fRegion",
                    "fMobilePhone",
                    "fPayCondition",
                    "fManageType",
                    "fClass",
                    "fValue",
                    "fRegUserId",
                    "fLastModifyDate",
                    "fRecentContactDate",
                    "fRegDate",
                    "fFlat",
                    "fClassTypeId",
                    "fCoSupplierId",
                    "fShareStatus",
                    "fCustType",
                    "fSuperiorId",
                    "fClueId",
                    "fLastMailTime",
                    "fCityId",
                    "fProvinceId",
                    "fSex",
                    "fMobile",
                    "fDuty",
                    "fWorkSite",
                    "fWorkUnit",
                    "fIncomeLevel",
                    "fStratum",
                    "fAge",
                    "fBirthday",
                    "fNation",
                    "fBizPostCode",
                    "fim",
                    "fBizPhone",
                    "fLastActivityTime",
                    "fLastSvTime",
                    "fLastCallTime",
                    "fLastSmsTime",
                    "fExpired",
                    "fLastAssignTime"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TOrganization.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TOrganization>"
      },
      "K3TOrganization.Filter1": {
        "type": "object",
        "title": "K3TOrganization.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TOrganization.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fAddress": {
                    "type": "boolean"
                  },
                  "fCity": {
                    "type": "boolean"
                  },
                  "fProvince": {
                    "type": "boolean"
                  },
                  "fCountry": {
                    "type": "boolean"
                  },
                  "fPostalCode": {
                    "type": "boolean"
                  },
                  "fPhone": {
                    "type": "boolean"
                  },
                  "fFax": {
                    "type": "boolean"
                  },
                  "fEmail": {
                    "type": "boolean"
                  },
                  "fHomePage": {
                    "type": "boolean"
                  },
                  "fCreditLimit": {
                    "type": "boolean"
                  },
                  "fTaxId": {
                    "type": "boolean"
                  },
                  "fBank": {
                    "type": "boolean"
                  },
                  "fAccount": {
                    "type": "boolean"
                  },
                  "fBankNumber": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fBoundAttr": {
                    "type": "boolean"
                  },
                  "fErpClsId": {
                    "type": "boolean"
                  },
                  "fShortName": {
                    "type": "boolean"
                  },
                  "fPriorityId": {
                    "type": "boolean"
                  },
                  "fpoGroupId": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fLanguageId": {
                    "type": "boolean"
                  },
                  "fRegionId": {
                    "type": "boolean"
                  },
                  "fTrade": {
                    "type": "boolean"
                  },
                  "fMinPoValue": {
                    "type": "boolean"
                  },
                  "fMaxDebitDate": {
                    "type": "boolean"
                  },
                  "fLegalPerson": {
                    "type": "boolean"
                  },
                  "fContact": {
                    "type": "boolean"
                  },
                  "fContactAcct": {
                    "type": "boolean"
                  },
                  "fPhoneAcct": {
                    "type": "boolean"
                  },
                  "fFaxAcct": {
                    "type": "boolean"
                  },
                  "fZipAcct": {
                    "type": "boolean"
                  },
                  "fEmailAcct": {
                    "type": "boolean"
                  },
                  "fAddrAcct": {
                    "type": "boolean"
                  },
                  "fTax": {
                    "type": "boolean"
                  },
                  "fCyId": {
                    "type": "boolean"
                  },
                  "fSetId": {
                    "type": "boolean"
                  },
                  "fSetDLineId": {
                    "type": "boolean"
                  },
                  "fTaxNum": {
                    "type": "boolean"
                  },
                  "fPriceClsId": {
                    "type": "boolean"
                  },
                  "fOperId": {
                    "type": "boolean"
                  },
                  "fciqNumber": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fSaleMode": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "farAccountId": {
                    "type": "boolean"
                  },
                  "fapAccountId": {
                    "type": "boolean"
                  },
                  "fpreAcctId": {
                    "type": "boolean"
                  },
                  "flastTradeAmount": {
                    "type": "boolean"
                  },
                  "flastRpAmount": {
                    "type": "boolean"
                  },
                  "ffavorPolicy": {
                    "type": "boolean"
                  },
                  "fdepartment": {
                    "type": "boolean"
                  },
                  "femployee": {
                    "type": "boolean"
                  },
                  "fcorperate": {
                    "type": "boolean"
                  },
                  "fbeginTradeDate": {
                    "type": "boolean"
                  },
                  "fendTradeDate": {
                    "type": "boolean"
                  },
                  "flastTradeDate": {
                    "type": "boolean"
                  },
                  "flastReceiveDate": {
                    "type": "boolean"
                  },
                  "fcashDiscount": {
                    "type": "boolean"
                  },
                  "fcurrencyId": {
                    "type": "boolean"
                  },
                  "fmaxDealAmount": {
                    "type": "boolean"
                  },
                  "fminForeReceiveRate": {
                    "type": "boolean"
                  },
                  "fminReserverate": {
                    "type": "boolean"
                  },
                  "fdebtLevel": {
                    "type": "boolean"
                  },
                  "fCarryingAos": {
                    "type": "boolean"
                  },
                  "fIsCreditMgr": {
                    "type": "boolean"
                  },
                  "fCreditPeriod": {
                    "type": "boolean"
                  },
                  "fCreditLevel": {
                    "type": "boolean"
                  },
                  "fPayTaxAcctId": {
                    "type": "boolean"
                  },
                  "fValueAddRate": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fCreditDays": {
                    "type": "boolean"
                  },
                  "fCreditAmount": {
                    "type": "boolean"
                  },
                  "fStockIdAssign": {
                    "type": "boolean"
                  },
                  "fStockIdInst": {
                    "type": "boolean"
                  },
                  "fStockIdKeep": {
                    "type": "boolean"
                  },
                  "fPaperPeriod": {
                    "type": "boolean"
                  },
                  "fAlarmPeriod": {
                    "type": "boolean"
                  },
                  "fLicAndPermit": {
                    "type": "boolean"
                  },
                  "fOtherArAcctId": {
                    "type": "boolean"
                  },
                  "fOtherApAcctId": {
                    "type": "boolean"
                  },
                  "fPreApAcctId": {
                    "type": "boolean"
                  },
                  "fSaleId": {
                    "type": "boolean"
                  },
                  "fHelpCode": {
                    "type": "boolean"
                  },
                  "fNameEn": {
                    "type": "boolean"
                  },
                  "fAddrEn": {
                    "type": "boolean"
                  },
                  "fciqCode": {
                    "type": "boolean"
                  },
                  "fRegion": {
                    "type": "boolean"
                  },
                  "fMobilePhone": {
                    "type": "boolean"
                  },
                  "fPayCondition": {
                    "type": "boolean"
                  },
                  "fManageType": {
                    "type": "boolean"
                  },
                  "fClass": {
                    "type": "boolean"
                  },
                  "fValue": {
                    "type": "boolean"
                  },
                  "fRegUserId": {
                    "type": "boolean"
                  },
                  "fLastModifyDate": {
                    "type": "boolean"
                  },
                  "fRecentContactDate": {
                    "type": "boolean"
                  },
                  "fRegDate": {
                    "type": "boolean"
                  },
                  "fFlat": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fCoSupplierId": {
                    "type": "boolean"
                  },
                  "fShareStatus": {
                    "type": "boolean"
                  },
                  "fCustType": {
                    "type": "boolean"
                  },
                  "fSuperiorId": {
                    "type": "boolean"
                  },
                  "fClueId": {
                    "type": "boolean"
                  },
                  "fLastMailTime": {
                    "type": "boolean"
                  },
                  "fCityId": {
                    "type": "boolean"
                  },
                  "fProvinceId": {
                    "type": "boolean"
                  },
                  "fSex": {
                    "type": "boolean"
                  },
                  "fMobile": {
                    "type": "boolean"
                  },
                  "fDuty": {
                    "type": "boolean"
                  },
                  "fWorkSite": {
                    "type": "boolean"
                  },
                  "fWorkUnit": {
                    "type": "boolean"
                  },
                  "fIncomeLevel": {
                    "type": "boolean"
                  },
                  "fStratum": {
                    "type": "boolean"
                  },
                  "fAge": {
                    "type": "boolean"
                  },
                  "fBirthday": {
                    "type": "boolean"
                  },
                  "fNation": {
                    "type": "boolean"
                  },
                  "fBizPostCode": {
                    "type": "boolean"
                  },
                  "fim": {
                    "type": "boolean"
                  },
                  "fBizPhone": {
                    "type": "boolean"
                  },
                  "fLastActivityTime": {
                    "type": "boolean"
                  },
                  "fLastSvTime": {
                    "type": "boolean"
                  },
                  "fLastCallTime": {
                    "type": "boolean"
                  },
                  "fLastSmsTime": {
                    "type": "boolean"
                  },
                  "fExpired": {
                    "type": "boolean"
                  },
                  "fLastAssignTime": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fAddress",
                    "fCity",
                    "fProvince",
                    "fCountry",
                    "fPostalCode",
                    "fPhone",
                    "fFax",
                    "fEmail",
                    "fHomePage",
                    "fCreditLimit",
                    "fTaxId",
                    "fBank",
                    "fAccount",
                    "fBankNumber",
                    "fBrNo",
                    "fBoundAttr",
                    "fErpClsId",
                    "fShortName",
                    "fPriorityId",
                    "fpoGroupId",
                    "fStatus",
                    "fLanguageId",
                    "fRegionId",
                    "fTrade",
                    "fMinPoValue",
                    "fMaxDebitDate",
                    "fLegalPerson",
                    "fContact",
                    "fContactAcct",
                    "fPhoneAcct",
                    "fFaxAcct",
                    "fZipAcct",
                    "fEmailAcct",
                    "fAddrAcct",
                    "fTax",
                    "fCyId",
                    "fSetId",
                    "fSetDLineId",
                    "fTaxNum",
                    "fPriceClsId",
                    "fOperId",
                    "fciqNumber",
                    "fDeleted",
                    "fSaleMode",
                    "fName",
                    "fNumber",
                    "fParentId",
                    "fShortNumber",
                    "farAccountId",
                    "fapAccountId",
                    "fpreAcctId",
                    "flastTradeAmount",
                    "flastRpAmount",
                    "ffavorPolicy",
                    "fdepartment",
                    "femployee",
                    "fcorperate",
                    "fbeginTradeDate",
                    "fendTradeDate",
                    "flastTradeDate",
                    "flastReceiveDate",
                    "fcashDiscount",
                    "fcurrencyId",
                    "fmaxDealAmount",
                    "fminForeReceiveRate",
                    "fminReserverate",
                    "fdebtLevel",
                    "fCarryingAos",
                    "fIsCreditMgr",
                    "fCreditPeriod",
                    "fCreditLevel",
                    "fPayTaxAcctId",
                    "fValueAddRate",
                    "fTypeId",
                    "fCreditDays",
                    "fCreditAmount",
                    "fStockIdAssign",
                    "fStockIdInst",
                    "fStockIdKeep",
                    "fPaperPeriod",
                    "fAlarmPeriod",
                    "fLicAndPermit",
                    "fOtherArAcctId",
                    "fOtherApAcctId",
                    "fPreApAcctId",
                    "fSaleId",
                    "fHelpCode",
                    "fNameEn",
                    "fAddrEn",
                    "fciqCode",
                    "fRegion",
                    "fMobilePhone",
                    "fPayCondition",
                    "fManageType",
                    "fClass",
                    "fValue",
                    "fRegUserId",
                    "fLastModifyDate",
                    "fRecentContactDate",
                    "fRegDate",
                    "fFlat",
                    "fClassTypeId",
                    "fCoSupplierId",
                    "fShareStatus",
                    "fCustType",
                    "fSuperiorId",
                    "fClueId",
                    "fLastMailTime",
                    "fCityId",
                    "fProvinceId",
                    "fSex",
                    "fMobile",
                    "fDuty",
                    "fWorkSite",
                    "fWorkUnit",
                    "fIncomeLevel",
                    "fStratum",
                    "fAge",
                    "fBirthday",
                    "fNation",
                    "fBizPostCode",
                    "fim",
                    "fBizPhone",
                    "fLastActivityTime",
                    "fLastSvTime",
                    "fLastCallTime",
                    "fLastSmsTime",
                    "fExpired",
                    "fLastAssignTime"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TOrganization.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TOrganization>"
      },
      "K3TStock.Filter": {
        "type": "object",
        "title": "K3TStock.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fHelperCode": {
                    "type": "boolean"
                  },
                  "fEmpId": {
                    "type": "boolean"
                  },
                  "fAddress": {
                    "type": "boolean"
                  },
                  "fPhone": {
                    "type": "boolean"
                  },
                  "fProperty": {
                    "type": "boolean"
                  },
                  "fbWorkShop": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fIsStockMgr": {
                    "type": "boolean"
                  },
                  "fspGroupId": {
                    "type": "boolean"
                  },
                  "fmrpAvail": {
                    "type": "boolean"
                  },
                  "fGroupId": {
                    "type": "boolean"
                  },
                  "fStockGroupId": {
                    "type": "boolean"
                  },
                  "fCalcCostOrder": {
                    "type": "boolean"
                  },
                  "fPlanArea": {
                    "type": "boolean"
                  },
                  "fUnderStock": {
                    "type": "boolean"
                  },
                  "fIncludeAccounting": {
                    "type": "boolean"
                  },
                  "fptlEnable": {
                    "type": "boolean"
                  },
                  "fOutRule": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fBrNo",
                    "fHelperCode",
                    "fEmpId",
                    "fAddress",
                    "fPhone",
                    "fProperty",
                    "fbWorkShop",
                    "fName",
                    "fNumber",
                    "fParentId",
                    "fDeleted",
                    "fShortNumber",
                    "fTypeId",
                    "fIsStockMgr",
                    "fspGroupId",
                    "fmrpAvail",
                    "fGroupId",
                    "fStockGroupId",
                    "fCalcCostOrder",
                    "fPlanArea",
                    "fUnderStock",
                    "fIncludeAccounting",
                    "fptlEnable",
                    "fOutRule"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TStock.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TStock>"
      },
      "K3TStock.Filter1": {
        "type": "object",
        "title": "K3TStock.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TStock.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fHelperCode": {
                    "type": "boolean"
                  },
                  "fEmpId": {
                    "type": "boolean"
                  },
                  "fAddress": {
                    "type": "boolean"
                  },
                  "fPhone": {
                    "type": "boolean"
                  },
                  "fProperty": {
                    "type": "boolean"
                  },
                  "fbWorkShop": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fIsStockMgr": {
                    "type": "boolean"
                  },
                  "fspGroupId": {
                    "type": "boolean"
                  },
                  "fmrpAvail": {
                    "type": "boolean"
                  },
                  "fGroupId": {
                    "type": "boolean"
                  },
                  "fStockGroupId": {
                    "type": "boolean"
                  },
                  "fCalcCostOrder": {
                    "type": "boolean"
                  },
                  "fPlanArea": {
                    "type": "boolean"
                  },
                  "fUnderStock": {
                    "type": "boolean"
                  },
                  "fIncludeAccounting": {
                    "type": "boolean"
                  },
                  "fptlEnable": {
                    "type": "boolean"
                  },
                  "fOutRule": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fBrNo",
                    "fHelperCode",
                    "fEmpId",
                    "fAddress",
                    "fPhone",
                    "fProperty",
                    "fbWorkShop",
                    "fName",
                    "fNumber",
                    "fParentId",
                    "fDeleted",
                    "fShortNumber",
                    "fTypeId",
                    "fIsStockMgr",
                    "fspGroupId",
                    "fmrpAvail",
                    "fGroupId",
                    "fStockGroupId",
                    "fCalcCostOrder",
                    "fPlanArea",
                    "fUnderStock",
                    "fIncludeAccounting",
                    "fptlEnable",
                    "fOutRule"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TStock.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TStock>"
      },
      "K3TStockPlace.Filter": {
        "type": "object",
        "title": "K3TStockPlace.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fspid": {
                    "type": "boolean"
                  },
                  "fspGroupId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fFullName": {
                    "type": "boolean"
                  },
                  "fLevel": {
                    "type": "boolean"
                  },
                  "fDetail": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fFullNumber": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fDescription": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fspid",
                    "fspGroupId",
                    "fNumber",
                    "fName",
                    "fFullName",
                    "fLevel",
                    "fDetail",
                    "fParentId",
                    "fFullNumber",
                    "fShortNumber",
                    "fDescription",
                    "fDeleted",
                    "fSystemType",
                    "uuid",
                    "fClassTypeId"
                  ],
                  "example": "fspid"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TStockPlace.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TStockPlace>"
      },
      "K3TStockPlace.Filter1": {
        "type": "object",
        "title": "K3TStockPlace.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TStockPlace.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fspid": {
                    "type": "boolean"
                  },
                  "fspGroupId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fFullName": {
                    "type": "boolean"
                  },
                  "fLevel": {
                    "type": "boolean"
                  },
                  "fDetail": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fFullNumber": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "fDescription": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fspid",
                    "fspGroupId",
                    "fNumber",
                    "fName",
                    "fFullName",
                    "fLevel",
                    "fDetail",
                    "fParentId",
                    "fFullNumber",
                    "fShortNumber",
                    "fDescription",
                    "fDeleted",
                    "fSystemType",
                    "uuid",
                    "fClassTypeId"
                  ],
                  "example": "fspid"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TStockPlace.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TStockPlace>"
      },
      "K3TSubMessage.Filter": {
        "type": "object",
        "title": "K3TSubMessage.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fid": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fDetail": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "fSpec": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fid",
                    "fParentId",
                    "fName",
                    "fTypeId",
                    "fDetail",
                    "fDeleted",
                    "fSystemType",
                    "fSpec",
                    "uuid"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TSubMessage.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TSubMessage>"
      },
      "K3TSubMessage.Filter1": {
        "type": "object",
        "title": "K3TSubMessage.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TSubMessage.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fInterId": {
                    "type": "boolean"
                  },
                  "fid": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fDetail": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fSystemType": {
                    "type": "boolean"
                  },
                  "fSpec": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fInterId",
                    "fid",
                    "fParentId",
                    "fName",
                    "fTypeId",
                    "fDetail",
                    "fDeleted",
                    "fSystemType",
                    "fSpec",
                    "uuid"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TSubMessage.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TSubMessage>"
      },
      "K3TSupplier.Filter": {
        "type": "object",
        "title": "K3TSupplier.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fAddress": {
                    "type": "boolean"
                  },
                  "fCity": {
                    "type": "boolean"
                  },
                  "fProvince": {
                    "type": "boolean"
                  },
                  "fCountry": {
                    "type": "boolean"
                  },
                  "fPostalCode": {
                    "type": "boolean"
                  },
                  "fPhone": {
                    "type": "boolean"
                  },
                  "fFax": {
                    "type": "boolean"
                  },
                  "fEmail": {
                    "type": "boolean"
                  },
                  "fHomePage": {
                    "type": "boolean"
                  },
                  "fCreditLimit": {
                    "type": "boolean"
                  },
                  "fTaxId": {
                    "type": "boolean"
                  },
                  "fBank": {
                    "type": "boolean"
                  },
                  "fAccount": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fBoundAttr": {
                    "type": "boolean"
                  },
                  "fErpClsId": {
                    "type": "boolean"
                  },
                  "fShortName": {
                    "type": "boolean"
                  },
                  "fPriorityId": {
                    "type": "boolean"
                  },
                  "fpoGroupId": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fLanguageId": {
                    "type": "boolean"
                  },
                  "fRegionId": {
                    "type": "boolean"
                  },
                  "fTrade": {
                    "type": "boolean"
                  },
                  "fMinPoValue": {
                    "type": "boolean"
                  },
                  "fMaxDeBitDate": {
                    "type": "boolean"
                  },
                  "fLegalPerson": {
                    "type": "boolean"
                  },
                  "fContact": {
                    "type": "boolean"
                  },
                  "fContactAcct": {
                    "type": "boolean"
                  },
                  "fPhoneAcct": {
                    "type": "boolean"
                  },
                  "fFaxAcct": {
                    "type": "boolean"
                  },
                  "fZipAcct": {
                    "type": "boolean"
                  },
                  "fEmailAcct": {
                    "type": "boolean"
                  },
                  "fAddrAcct": {
                    "type": "boolean"
                  },
                  "fTax": {
                    "type": "boolean"
                  },
                  "fCyId": {
                    "type": "boolean"
                  },
                  "fSetId": {
                    "type": "boolean"
                  },
                  "fSetDLineId": {
                    "type": "boolean"
                  },
                  "fTaxNum": {
                    "type": "boolean"
                  },
                  "fPriceClsId": {
                    "type": "boolean"
                  },
                  "fOperId": {
                    "type": "boolean"
                  },
                  "fciqNumber": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fSaleMode": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "farAccountId": {
                    "type": "boolean"
                  },
                  "fapAccountId": {
                    "type": "boolean"
                  },
                  "fpreAcctId": {
                    "type": "boolean"
                  },
                  "flastTradeAmount": {
                    "type": "boolean"
                  },
                  "fLastRpAmount": {
                    "type": "boolean"
                  },
                  "fFavorPolicy": {
                    "type": "boolean"
                  },
                  "fdepartment": {
                    "type": "boolean"
                  },
                  "femployee": {
                    "type": "boolean"
                  },
                  "fcorperate": {
                    "type": "boolean"
                  },
                  "fBeginTradeDate": {
                    "type": "boolean"
                  },
                  "fEndTradeDate": {
                    "type": "boolean"
                  },
                  "fLastTradeDate": {
                    "type": "boolean"
                  },
                  "fLastReceiveDate": {
                    "type": "boolean"
                  },
                  "fcashDiscount": {
                    "type": "boolean"
                  },
                  "fcurrencyId": {
                    "type": "boolean"
                  },
                  "fMaxDealAmount": {
                    "type": "boolean"
                  },
                  "fMinForeReceiveRate": {
                    "type": "boolean"
                  },
                  "fMinReserveRate": {
                    "type": "boolean"
                  },
                  "fMaxForePayAmount": {
                    "type": "boolean"
                  },
                  "fMaxForePayRate": {
                    "type": "boolean"
                  },
                  "fdebtLevel": {
                    "type": "boolean"
                  },
                  "fCreditDays": {
                    "type": "boolean"
                  },
                  "fValueAddRate": {
                    "type": "boolean"
                  },
                  "fPayTaxAcctId": {
                    "type": "boolean"
                  },
                  "fDiscount": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fCreditAmount": {
                    "type": "boolean"
                  },
                  "fCreditLevel": {
                    "type": "boolean"
                  },
                  "fStockIdAssignee": {
                    "type": "boolean"
                  },
                  "fBr": {
                    "type": "boolean"
                  },
                  "fRegmark": {
                    "type": "boolean"
                  },
                  "fLicAndPermit": {
                    "type": "boolean"
                  },
                  "fLicence": {
                    "type": "boolean"
                  },
                  "fPaperPeriod": {
                    "type": "boolean"
                  },
                  "fAlarmPeriod": {
                    "type": "boolean"
                  },
                  "fOtherArAcctId": {
                    "type": "boolean"
                  },
                  "fOtherApAcctId": {
                    "type": "boolean"
                  },
                  "fPreArAcctId": {
                    "type": "boolean"
                  },
                  "fHelpCode": {
                    "type": "boolean"
                  },
                  "fNameEn": {
                    "type": "boolean"
                  },
                  "fAddrEn": {
                    "type": "boolean"
                  },
                  "fciqCode": {
                    "type": "boolean"
                  },
                  "fRegion": {
                    "type": "boolean"
                  },
                  "fMobilePhone": {
                    "type": "boolean"
                  },
                  "fManageType": {
                    "type": "boolean"
                  },
                  "fRegsterDate": {
                    "type": "boolean"
                  },
                  "fPassDate": {
                    "type": "boolean"
                  },
                  "fInureDate": {
                    "type": "boolean"
                  },
                  "fAbateDate": {
                    "type": "boolean"
                  },
                  "fSupplyGrade": {
                    "type": "boolean"
                  },
                  "fSupplyType": {
                    "type": "boolean"
                  },
                  "fCompanyType": {
                    "type": "boolean"
                  },
                  "fEvalutionType": {
                    "type": "boolean"
                  },
                  "fSupplierCoroutineFlag": {
                    "type": "boolean"
                  },
                  "fAutoCreateMr": {
                    "type": "boolean"
                  },
                  "fAutoValidateOrderFlag": {
                    "type": "boolean"
                  },
                  "fapFrozenFlag": {
                    "type": "boolean"
                  },
                  "fid": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fBillNo": {
                    "type": "boolean"
                  },
                  "fBiller": {
                    "type": "boolean"
                  },
                  "fModifier": {
                    "type": "boolean"
                  },
                  "fBillDate": {
                    "type": "boolean"
                  },
                  "fModifyDate": {
                    "type": "boolean"
                  },
                  "fScale": {
                    "type": "boolean"
                  },
                  "fCharacter": {
                    "type": "boolean"
                  },
                  "fCreateDate": {
                    "type": "boolean"
                  },
                  "fRegsterAmount": {
                    "type": "boolean"
                  },
                  "fProducePermit": {
                    "type": "boolean"
                  },
                  "fSumPepole": {
                    "type": "boolean"
                  },
                  "fPrepayAmount": {
                    "type": "boolean"
                  },
                  "fIsAutoNumber": {
                    "type": "boolean"
                  },
                  "fvmiStockId": {
                    "type": "boolean"
                  },
                  "fpoMode": {
                    "type": "boolean"
                  },
                  "fsrmStartDate": {
                    "type": "boolean"
                  },
                  "fProvinceId": {
                    "type": "boolean"
                  },
                  "f1688MemberId": {
                    "type": "boolean"
                  },
                  "fCityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fAddress",
                    "fCity",
                    "fProvince",
                    "fCountry",
                    "fPostalCode",
                    "fPhone",
                    "fFax",
                    "fEmail",
                    "fHomePage",
                    "fCreditLimit",
                    "fTaxId",
                    "fBank",
                    "fAccount",
                    "fBrNo",
                    "fBoundAttr",
                    "fErpClsId",
                    "fShortName",
                    "fPriorityId",
                    "fpoGroupId",
                    "fStatus",
                    "fLanguageId",
                    "fRegionId",
                    "fTrade",
                    "fMinPoValue",
                    "fMaxDeBitDate",
                    "fLegalPerson",
                    "fContact",
                    "fContactAcct",
                    "fPhoneAcct",
                    "fFaxAcct",
                    "fZipAcct",
                    "fEmailAcct",
                    "fAddrAcct",
                    "fTax",
                    "fCyId",
                    "fSetId",
                    "fSetDLineId",
                    "fTaxNum",
                    "fPriceClsId",
                    "fOperId",
                    "fciqNumber",
                    "fDeleted",
                    "fSaleMode",
                    "fName",
                    "fNumber",
                    "fParentId",
                    "fShortNumber",
                    "farAccountId",
                    "fapAccountId",
                    "fpreAcctId",
                    "flastTradeAmount",
                    "fLastRpAmount",
                    "fFavorPolicy",
                    "fdepartment",
                    "femployee",
                    "fcorperate",
                    "fBeginTradeDate",
                    "fEndTradeDate",
                    "fLastTradeDate",
                    "fLastReceiveDate",
                    "fcashDiscount",
                    "fcurrencyId",
                    "fMaxDealAmount",
                    "fMinForeReceiveRate",
                    "fMinReserveRate",
                    "fMaxForePayAmount",
                    "fMaxForePayRate",
                    "fdebtLevel",
                    "fCreditDays",
                    "fValueAddRate",
                    "fPayTaxAcctId",
                    "fDiscount",
                    "fTypeId",
                    "fCreditAmount",
                    "fCreditLevel",
                    "fStockIdAssignee",
                    "fBr",
                    "fRegmark",
                    "fLicAndPermit",
                    "fLicence",
                    "fPaperPeriod",
                    "fAlarmPeriod",
                    "fOtherArAcctId",
                    "fOtherApAcctId",
                    "fPreArAcctId",
                    "fHelpCode",
                    "fNameEn",
                    "fAddrEn",
                    "fciqCode",
                    "fRegion",
                    "fMobilePhone",
                    "fManageType",
                    "fRegsterDate",
                    "fPassDate",
                    "fInureDate",
                    "fAbateDate",
                    "fSupplyGrade",
                    "fSupplyType",
                    "fCompanyType",
                    "fEvalutionType",
                    "fSupplierCoroutineFlag",
                    "fAutoCreateMr",
                    "fAutoValidateOrderFlag",
                    "fapFrozenFlag",
                    "fid",
                    "fClassTypeId",
                    "fBillNo",
                    "fBiller",
                    "fModifier",
                    "fBillDate",
                    "fModifyDate",
                    "fScale",
                    "fCharacter",
                    "fCreateDate",
                    "fRegsterAmount",
                    "fProducePermit",
                    "fSumPepole",
                    "fPrepayAmount",
                    "fIsAutoNumber",
                    "fvmiStockId",
                    "fpoMode",
                    "fsrmStartDate",
                    "fProvinceId",
                    "f1688MemberId",
                    "fCityId"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TSupplier.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TSupplier>"
      },
      "K3TSupplier.Filter1": {
        "type": "object",
        "title": "K3TSupplier.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TSupplier.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fItemId": {
                    "type": "boolean"
                  },
                  "fAddress": {
                    "type": "boolean"
                  },
                  "fCity": {
                    "type": "boolean"
                  },
                  "fProvince": {
                    "type": "boolean"
                  },
                  "fCountry": {
                    "type": "boolean"
                  },
                  "fPostalCode": {
                    "type": "boolean"
                  },
                  "fPhone": {
                    "type": "boolean"
                  },
                  "fFax": {
                    "type": "boolean"
                  },
                  "fEmail": {
                    "type": "boolean"
                  },
                  "fHomePage": {
                    "type": "boolean"
                  },
                  "fCreditLimit": {
                    "type": "boolean"
                  },
                  "fTaxId": {
                    "type": "boolean"
                  },
                  "fBank": {
                    "type": "boolean"
                  },
                  "fAccount": {
                    "type": "boolean"
                  },
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fBoundAttr": {
                    "type": "boolean"
                  },
                  "fErpClsId": {
                    "type": "boolean"
                  },
                  "fShortName": {
                    "type": "boolean"
                  },
                  "fPriorityId": {
                    "type": "boolean"
                  },
                  "fpoGroupId": {
                    "type": "boolean"
                  },
                  "fStatus": {
                    "type": "boolean"
                  },
                  "fLanguageId": {
                    "type": "boolean"
                  },
                  "fRegionId": {
                    "type": "boolean"
                  },
                  "fTrade": {
                    "type": "boolean"
                  },
                  "fMinPoValue": {
                    "type": "boolean"
                  },
                  "fMaxDeBitDate": {
                    "type": "boolean"
                  },
                  "fLegalPerson": {
                    "type": "boolean"
                  },
                  "fContact": {
                    "type": "boolean"
                  },
                  "fContactAcct": {
                    "type": "boolean"
                  },
                  "fPhoneAcct": {
                    "type": "boolean"
                  },
                  "fFaxAcct": {
                    "type": "boolean"
                  },
                  "fZipAcct": {
                    "type": "boolean"
                  },
                  "fEmailAcct": {
                    "type": "boolean"
                  },
                  "fAddrAcct": {
                    "type": "boolean"
                  },
                  "fTax": {
                    "type": "boolean"
                  },
                  "fCyId": {
                    "type": "boolean"
                  },
                  "fSetId": {
                    "type": "boolean"
                  },
                  "fSetDLineId": {
                    "type": "boolean"
                  },
                  "fTaxNum": {
                    "type": "boolean"
                  },
                  "fPriceClsId": {
                    "type": "boolean"
                  },
                  "fOperId": {
                    "type": "boolean"
                  },
                  "fciqNumber": {
                    "type": "boolean"
                  },
                  "fDeleted": {
                    "type": "boolean"
                  },
                  "fSaleMode": {
                    "type": "boolean"
                  },
                  "fName": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fParentId": {
                    "type": "boolean"
                  },
                  "fShortNumber": {
                    "type": "boolean"
                  },
                  "farAccountId": {
                    "type": "boolean"
                  },
                  "fapAccountId": {
                    "type": "boolean"
                  },
                  "fpreAcctId": {
                    "type": "boolean"
                  },
                  "flastTradeAmount": {
                    "type": "boolean"
                  },
                  "fLastRpAmount": {
                    "type": "boolean"
                  },
                  "fFavorPolicy": {
                    "type": "boolean"
                  },
                  "fdepartment": {
                    "type": "boolean"
                  },
                  "femployee": {
                    "type": "boolean"
                  },
                  "fcorperate": {
                    "type": "boolean"
                  },
                  "fBeginTradeDate": {
                    "type": "boolean"
                  },
                  "fEndTradeDate": {
                    "type": "boolean"
                  },
                  "fLastTradeDate": {
                    "type": "boolean"
                  },
                  "fLastReceiveDate": {
                    "type": "boolean"
                  },
                  "fcashDiscount": {
                    "type": "boolean"
                  },
                  "fcurrencyId": {
                    "type": "boolean"
                  },
                  "fMaxDealAmount": {
                    "type": "boolean"
                  },
                  "fMinForeReceiveRate": {
                    "type": "boolean"
                  },
                  "fMinReserveRate": {
                    "type": "boolean"
                  },
                  "fMaxForePayAmount": {
                    "type": "boolean"
                  },
                  "fMaxForePayRate": {
                    "type": "boolean"
                  },
                  "fdebtLevel": {
                    "type": "boolean"
                  },
                  "fCreditDays": {
                    "type": "boolean"
                  },
                  "fValueAddRate": {
                    "type": "boolean"
                  },
                  "fPayTaxAcctId": {
                    "type": "boolean"
                  },
                  "fDiscount": {
                    "type": "boolean"
                  },
                  "fTypeId": {
                    "type": "boolean"
                  },
                  "fCreditAmount": {
                    "type": "boolean"
                  },
                  "fCreditLevel": {
                    "type": "boolean"
                  },
                  "fStockIdAssignee": {
                    "type": "boolean"
                  },
                  "fBr": {
                    "type": "boolean"
                  },
                  "fRegmark": {
                    "type": "boolean"
                  },
                  "fLicAndPermit": {
                    "type": "boolean"
                  },
                  "fLicence": {
                    "type": "boolean"
                  },
                  "fPaperPeriod": {
                    "type": "boolean"
                  },
                  "fAlarmPeriod": {
                    "type": "boolean"
                  },
                  "fOtherArAcctId": {
                    "type": "boolean"
                  },
                  "fOtherApAcctId": {
                    "type": "boolean"
                  },
                  "fPreArAcctId": {
                    "type": "boolean"
                  },
                  "fHelpCode": {
                    "type": "boolean"
                  },
                  "fNameEn": {
                    "type": "boolean"
                  },
                  "fAddrEn": {
                    "type": "boolean"
                  },
                  "fciqCode": {
                    "type": "boolean"
                  },
                  "fRegion": {
                    "type": "boolean"
                  },
                  "fMobilePhone": {
                    "type": "boolean"
                  },
                  "fManageType": {
                    "type": "boolean"
                  },
                  "fRegsterDate": {
                    "type": "boolean"
                  },
                  "fPassDate": {
                    "type": "boolean"
                  },
                  "fInureDate": {
                    "type": "boolean"
                  },
                  "fAbateDate": {
                    "type": "boolean"
                  },
                  "fSupplyGrade": {
                    "type": "boolean"
                  },
                  "fSupplyType": {
                    "type": "boolean"
                  },
                  "fCompanyType": {
                    "type": "boolean"
                  },
                  "fEvalutionType": {
                    "type": "boolean"
                  },
                  "fSupplierCoroutineFlag": {
                    "type": "boolean"
                  },
                  "fAutoCreateMr": {
                    "type": "boolean"
                  },
                  "fAutoValidateOrderFlag": {
                    "type": "boolean"
                  },
                  "fapFrozenFlag": {
                    "type": "boolean"
                  },
                  "fid": {
                    "type": "boolean"
                  },
                  "fClassTypeId": {
                    "type": "boolean"
                  },
                  "fBillNo": {
                    "type": "boolean"
                  },
                  "fBiller": {
                    "type": "boolean"
                  },
                  "fModifier": {
                    "type": "boolean"
                  },
                  "fBillDate": {
                    "type": "boolean"
                  },
                  "fModifyDate": {
                    "type": "boolean"
                  },
                  "fScale": {
                    "type": "boolean"
                  },
                  "fCharacter": {
                    "type": "boolean"
                  },
                  "fCreateDate": {
                    "type": "boolean"
                  },
                  "fRegsterAmount": {
                    "type": "boolean"
                  },
                  "fProducePermit": {
                    "type": "boolean"
                  },
                  "fSumPepole": {
                    "type": "boolean"
                  },
                  "fPrepayAmount": {
                    "type": "boolean"
                  },
                  "fIsAutoNumber": {
                    "type": "boolean"
                  },
                  "fvmiStockId": {
                    "type": "boolean"
                  },
                  "fpoMode": {
                    "type": "boolean"
                  },
                  "fsrmStartDate": {
                    "type": "boolean"
                  },
                  "fProvinceId": {
                    "type": "boolean"
                  },
                  "f1688MemberId": {
                    "type": "boolean"
                  },
                  "fCityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fItemId",
                    "fAddress",
                    "fCity",
                    "fProvince",
                    "fCountry",
                    "fPostalCode",
                    "fPhone",
                    "fFax",
                    "fEmail",
                    "fHomePage",
                    "fCreditLimit",
                    "fTaxId",
                    "fBank",
                    "fAccount",
                    "fBrNo",
                    "fBoundAttr",
                    "fErpClsId",
                    "fShortName",
                    "fPriorityId",
                    "fpoGroupId",
                    "fStatus",
                    "fLanguageId",
                    "fRegionId",
                    "fTrade",
                    "fMinPoValue",
                    "fMaxDeBitDate",
                    "fLegalPerson",
                    "fContact",
                    "fContactAcct",
                    "fPhoneAcct",
                    "fFaxAcct",
                    "fZipAcct",
                    "fEmailAcct",
                    "fAddrAcct",
                    "fTax",
                    "fCyId",
                    "fSetId",
                    "fSetDLineId",
                    "fTaxNum",
                    "fPriceClsId",
                    "fOperId",
                    "fciqNumber",
                    "fDeleted",
                    "fSaleMode",
                    "fName",
                    "fNumber",
                    "fParentId",
                    "fShortNumber",
                    "farAccountId",
                    "fapAccountId",
                    "fpreAcctId",
                    "flastTradeAmount",
                    "fLastRpAmount",
                    "fFavorPolicy",
                    "fdepartment",
                    "femployee",
                    "fcorperate",
                    "fBeginTradeDate",
                    "fEndTradeDate",
                    "fLastTradeDate",
                    "fLastReceiveDate",
                    "fcashDiscount",
                    "fcurrencyId",
                    "fMaxDealAmount",
                    "fMinForeReceiveRate",
                    "fMinReserveRate",
                    "fMaxForePayAmount",
                    "fMaxForePayRate",
                    "fdebtLevel",
                    "fCreditDays",
                    "fValueAddRate",
                    "fPayTaxAcctId",
                    "fDiscount",
                    "fTypeId",
                    "fCreditAmount",
                    "fCreditLevel",
                    "fStockIdAssignee",
                    "fBr",
                    "fRegmark",
                    "fLicAndPermit",
                    "fLicence",
                    "fPaperPeriod",
                    "fAlarmPeriod",
                    "fOtherArAcctId",
                    "fOtherApAcctId",
                    "fPreArAcctId",
                    "fHelpCode",
                    "fNameEn",
                    "fAddrEn",
                    "fciqCode",
                    "fRegion",
                    "fMobilePhone",
                    "fManageType",
                    "fRegsterDate",
                    "fPassDate",
                    "fInureDate",
                    "fAbateDate",
                    "fSupplyGrade",
                    "fSupplyType",
                    "fCompanyType",
                    "fEvalutionType",
                    "fSupplierCoroutineFlag",
                    "fAutoCreateMr",
                    "fAutoValidateOrderFlag",
                    "fapFrozenFlag",
                    "fid",
                    "fClassTypeId",
                    "fBillNo",
                    "fBiller",
                    "fModifier",
                    "fBillDate",
                    "fModifyDate",
                    "fScale",
                    "fCharacter",
                    "fCreateDate",
                    "fRegsterAmount",
                    "fProducePermit",
                    "fSumPepole",
                    "fPrepayAmount",
                    "fIsAutoNumber",
                    "fvmiStockId",
                    "fpoMode",
                    "fsrmStartDate",
                    "fProvinceId",
                    "f1688MemberId",
                    "fCityId"
                  ],
                  "example": "fItemId"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TSupplier.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TSupplier>"
      },
      "K3TVoucher.Filter": {
        "type": "object",
        "title": "K3TVoucher.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fVoucherId": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fYear": {
                    "type": "boolean"
                  },
                  "fPeriod": {
                    "type": "boolean"
                  },
                  "fGroupId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fReference": {
                    "type": "boolean"
                  },
                  "fExplanation": {
                    "type": "boolean"
                  },
                  "fAttachments": {
                    "type": "boolean"
                  },
                  "fEntryCount": {
                    "type": "boolean"
                  },
                  "fDebitTotal": {
                    "type": "boolean"
                  },
                  "fCreditTotal": {
                    "type": "boolean"
                  },
                  "fInternalInd": {
                    "type": "boolean"
                  },
                  "fChecked": {
                    "type": "boolean"
                  },
                  "fPosted": {
                    "type": "boolean"
                  },
                  "fPreparerId": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fPosterId": {
                    "type": "boolean"
                  },
                  "fCashierId": {
                    "type": "boolean"
                  },
                  "fHandler": {
                    "type": "boolean"
                  },
                  "fOwnerGroupId": {
                    "type": "boolean"
                  },
                  "fObjectName": {
                    "type": "boolean"
                  },
                  "fParameter": {
                    "type": "boolean"
                  },
                  "fSerialNum": {
                    "type": "boolean"
                  },
                  "fTranType": {
                    "type": "boolean"
                  },
                  "fTransDate": {
                    "type": "boolean"
                  },
                  "fFrameWorkId": {
                    "type": "boolean"
                  },
                  "fApproveId": {
                    "type": "boolean"
                  },
                  "fFootNote": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fLink": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fVoucherId",
                    "fDate",
                    "fYear",
                    "fPeriod",
                    "fGroupId",
                    "fNumber",
                    "fReference",
                    "fExplanation",
                    "fAttachments",
                    "fEntryCount",
                    "fDebitTotal",
                    "fCreditTotal",
                    "fInternalInd",
                    "fChecked",
                    "fPosted",
                    "fPreparerId",
                    "fCheckerId",
                    "fPosterId",
                    "fCashierId",
                    "fHandler",
                    "fOwnerGroupId",
                    "fObjectName",
                    "fParameter",
                    "fSerialNum",
                    "fTranType",
                    "fTransDate",
                    "fFrameWorkId",
                    "fApproveId",
                    "fFootNote",
                    "uuid",
                    "fLink"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TVoucher.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TVoucher>"
      },
      "K3TVoucher.Filter1": {
        "type": "object",
        "title": "K3TVoucher.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TVoucher.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fVoucherId": {
                    "type": "boolean"
                  },
                  "fDate": {
                    "type": "boolean"
                  },
                  "fYear": {
                    "type": "boolean"
                  },
                  "fPeriod": {
                    "type": "boolean"
                  },
                  "fGroupId": {
                    "type": "boolean"
                  },
                  "fNumber": {
                    "type": "boolean"
                  },
                  "fReference": {
                    "type": "boolean"
                  },
                  "fExplanation": {
                    "type": "boolean"
                  },
                  "fAttachments": {
                    "type": "boolean"
                  },
                  "fEntryCount": {
                    "type": "boolean"
                  },
                  "fDebitTotal": {
                    "type": "boolean"
                  },
                  "fCreditTotal": {
                    "type": "boolean"
                  },
                  "fInternalInd": {
                    "type": "boolean"
                  },
                  "fChecked": {
                    "type": "boolean"
                  },
                  "fPosted": {
                    "type": "boolean"
                  },
                  "fPreparerId": {
                    "type": "boolean"
                  },
                  "fCheckerId": {
                    "type": "boolean"
                  },
                  "fPosterId": {
                    "type": "boolean"
                  },
                  "fCashierId": {
                    "type": "boolean"
                  },
                  "fHandler": {
                    "type": "boolean"
                  },
                  "fOwnerGroupId": {
                    "type": "boolean"
                  },
                  "fObjectName": {
                    "type": "boolean"
                  },
                  "fParameter": {
                    "type": "boolean"
                  },
                  "fSerialNum": {
                    "type": "boolean"
                  },
                  "fTranType": {
                    "type": "boolean"
                  },
                  "fTransDate": {
                    "type": "boolean"
                  },
                  "fFrameWorkId": {
                    "type": "boolean"
                  },
                  "fApproveId": {
                    "type": "boolean"
                  },
                  "fFootNote": {
                    "type": "boolean"
                  },
                  "uuid": {
                    "type": "boolean"
                  },
                  "fLink": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fVoucherId",
                    "fDate",
                    "fYear",
                    "fPeriod",
                    "fGroupId",
                    "fNumber",
                    "fReference",
                    "fExplanation",
                    "fAttachments",
                    "fEntryCount",
                    "fDebitTotal",
                    "fCreditTotal",
                    "fInternalInd",
                    "fChecked",
                    "fPosted",
                    "fPreparerId",
                    "fCheckerId",
                    "fPosterId",
                    "fCashierId",
                    "fHandler",
                    "fOwnerGroupId",
                    "fObjectName",
                    "fParameter",
                    "fSerialNum",
                    "fTranType",
                    "fTransDate",
                    "fFrameWorkId",
                    "fApproveId",
                    "fFootNote",
                    "uuid",
                    "fLink"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TVoucher.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TVoucher>"
      },
      "K3TVoucherEntry.Filter": {
        "type": "object",
        "title": "K3TVoucherEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fVoucherId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fExplanation": {
                    "type": "boolean"
                  },
                  "fAccountId": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fExchangeRate": {
                    "type": "boolean"
                  },
                  "fdc": {
                    "type": "boolean"
                  },
                  "fAmountFor": {
                    "type": "boolean"
                  },
                  "fAmount": {
                    "type": "boolean"
                  },
                  "fQuantity": {
                    "type": "boolean"
                  },
                  "fMeasureUnitId": {
                    "type": "boolean"
                  },
                  "fUnitPrice": {
                    "type": "boolean"
                  },
                  "fInternalInd": {
                    "type": "boolean"
                  },
                  "fAccountId2": {
                    "type": "boolean"
                  },
                  "fSettleTypeId": {
                    "type": "boolean"
                  },
                  "fSettleNo": {
                    "type": "boolean"
                  },
                  "fTransNo": {
                    "type": "boolean"
                  },
                  "fCashFlowItem": {
                    "type": "boolean"
                  },
                  "fTaskId": {
                    "type": "boolean"
                  },
                  "fResourceId": {
                    "type": "boolean"
                  },
                  "fExchangeRateType": {
                    "type": "boolean"
                  },
                  "fSideEntryId": {
                    "type": "boolean"
                  },
                  "fIsBalance": {
                    "type": "boolean"
                  },
                  "fBalanceGroupId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fVoucherId",
                    "fEntryId",
                    "fExplanation",
                    "fAccountId",
                    "fDetailId",
                    "fCurrencyId",
                    "fExchangeRate",
                    "fdc",
                    "fAmountFor",
                    "fAmount",
                    "fQuantity",
                    "fMeasureUnitId",
                    "fUnitPrice",
                    "fInternalInd",
                    "fAccountId2",
                    "fSettleTypeId",
                    "fSettleNo",
                    "fTransNo",
                    "fCashFlowItem",
                    "fTaskId",
                    "fResourceId",
                    "fExchangeRateType",
                    "fSideEntryId",
                    "fIsBalance",
                    "fBalanceGroupId"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TVoucherEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TVoucherEntry>"
      },
      "K3TVoucherEntry.Filter1": {
        "type": "object",
        "title": "K3TVoucherEntry.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "K3TVoucherEntry.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "fBrNo": {
                    "type": "boolean"
                  },
                  "fVoucherId": {
                    "type": "boolean"
                  },
                  "fEntryId": {
                    "type": "boolean"
                  },
                  "fExplanation": {
                    "type": "boolean"
                  },
                  "fAccountId": {
                    "type": "boolean"
                  },
                  "fDetailId": {
                    "type": "boolean"
                  },
                  "fCurrencyId": {
                    "type": "boolean"
                  },
                  "fExchangeRate": {
                    "type": "boolean"
                  },
                  "fdc": {
                    "type": "boolean"
                  },
                  "fAmountFor": {
                    "type": "boolean"
                  },
                  "fAmount": {
                    "type": "boolean"
                  },
                  "fQuantity": {
                    "type": "boolean"
                  },
                  "fMeasureUnitId": {
                    "type": "boolean"
                  },
                  "fUnitPrice": {
                    "type": "boolean"
                  },
                  "fInternalInd": {
                    "type": "boolean"
                  },
                  "fAccountId2": {
                    "type": "boolean"
                  },
                  "fSettleTypeId": {
                    "type": "boolean"
                  },
                  "fSettleNo": {
                    "type": "boolean"
                  },
                  "fTransNo": {
                    "type": "boolean"
                  },
                  "fCashFlowItem": {
                    "type": "boolean"
                  },
                  "fTaskId": {
                    "type": "boolean"
                  },
                  "fResourceId": {
                    "type": "boolean"
                  },
                  "fExchangeRateType": {
                    "type": "boolean"
                  },
                  "fSideEntryId": {
                    "type": "boolean"
                  },
                  "fIsBalance": {
                    "type": "boolean"
                  },
                  "fBalanceGroupId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "fBrNo",
                    "fVoucherId",
                    "fEntryId",
                    "fExplanation",
                    "fAccountId",
                    "fDetailId",
                    "fCurrencyId",
                    "fExchangeRate",
                    "fdc",
                    "fAmountFor",
                    "fAmount",
                    "fQuantity",
                    "fMeasureUnitId",
                    "fUnitPrice",
                    "fInternalInd",
                    "fAccountId2",
                    "fSettleTypeId",
                    "fSettleNo",
                    "fTransNo",
                    "fCashFlowItem",
                    "fTaskId",
                    "fResourceId",
                    "fExchangeRateType",
                    "fSideEntryId",
                    "fIsBalance",
                    "fBalanceGroupId"
                  ],
                  "example": "fBrNo"
                },
                "uniqueItems": true
              }
            ],
            "title": "K3TVoucherEntry.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<K3TVoucherEntry>"
      },
      "AppChannel.Filter": {
        "type": "object",
        "title": "AppChannel.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AppChannel.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "channelName": {
                    "type": "boolean"
                  },
                  "title": {
                    "type": "boolean"
                  },
                  "msgFormat": {
                    "type": "boolean"
                  },
                  "bStatus": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "channelName",
                    "title",
                    "msgFormat",
                    "bStatus"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AppChannel.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AppChannel>"
      },
      "AppLogs.Filter": {
        "type": "object",
        "title": "AppLogs.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AppLogs.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "remoteAddr": {
                    "type": "boolean"
                  },
                  "serverVersion": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "clientId": {
                    "type": "boolean"
                  },
                  "versionCode": {
                    "type": "boolean"
                  },
                  "versionName": {
                    "type": "boolean"
                  },
                  "deviceBrand": {
                    "type": "boolean"
                  },
                  "enterpriseName": {
                    "type": "boolean"
                  },
                  "manufacturer": {
                    "type": "boolean"
                  },
                  "systemVersion": {
                    "type": "boolean"
                  },
                  "systemModel": {
                    "type": "boolean"
                  },
                  "androidId": {
                    "type": "boolean"
                  },
                  "pdaType": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "billDate",
                    "remoteAddr",
                    "serverVersion",
                    "userId",
                    "userName",
                    "clientId",
                    "versionCode",
                    "versionName",
                    "deviceBrand",
                    "enterpriseName",
                    "manufacturer",
                    "systemVersion",
                    "systemModel",
                    "androidId",
                    "pdaType"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AppLogs.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AppLogs>"
      },
      "AppMessage.Filter": {
        "type": "object",
        "title": "AppMessage.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AppMessage.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "channelName": {
                    "type": "boolean"
                  },
                  "msgJson": {
                    "type": "boolean"
                  },
                  "remark": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "billDate",
                    "channelName",
                    "msgJson",
                    "remark",
                    "status"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AppMessage.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AppMessage>"
      },
      "AuthGroup.Filter": {
        "type": "object",
        "title": "AuthGroup.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AuthGroup.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "name"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AuthGroup.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AuthGroup>"
      },
      "AuthGroupPermissions.Filter": {
        "type": "object",
        "title": "AuthGroupPermissions.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AuthGroupPermissions.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "groupId": {
                    "type": "boolean"
                  },
                  "permissionId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "groupId",
                    "permissionId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AuthGroupPermissions.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AuthGroupPermissions>"
      },
      "AuthPermission.Filter": {
        "type": "object",
        "title": "AuthPermission.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AuthPermission.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "contentTypeId": {
                    "type": "boolean"
                  },
                  "codename": {
                    "type": "boolean"
                  },
                  "codetype": {
                    "type": "boolean"
                  },
                  "permission": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "name",
                    "contentTypeId",
                    "codename",
                    "codetype",
                    "permission"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AuthPermission.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AuthPermission>"
      },
      "AxBuffer.Filter": {
        "type": "object",
        "title": "AxBuffer.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AxBuffer.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "snapshotDateId": {
                    "type": "boolean"
                  },
                  "item": {
                    "type": "boolean"
                  },
                  "location": {
                    "type": "boolean"
                  },
                  "batch": {
                    "type": "boolean"
                  },
                  "cost": {
                    "type": "boolean"
                  },
                  "onhand": {
                    "type": "boolean"
                  },
                  "safetystock": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "snapshotDateId",
                    "item",
                    "location",
                    "batch",
                    "cost",
                    "onhand",
                    "safetystock"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AxBuffer.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AxBuffer>"
      },
      "AxDemand.Filter": {
        "type": "object",
        "title": "AxDemand.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AxDemand.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "snapshotDateId": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "item": {
                    "type": "boolean"
                  },
                  "cost": {
                    "type": "boolean"
                  },
                  "location": {
                    "type": "boolean"
                  },
                  "customer": {
                    "type": "boolean"
                  },
                  "due": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "deliverydate": {
                    "type": "boolean"
                  },
                  "quantityplanned": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "snapshotDateId",
                    "name",
                    "item",
                    "cost",
                    "location",
                    "customer",
                    "due",
                    "status",
                    "priority",
                    "quantity",
                    "deliverydate",
                    "quantityplanned"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AxDemand.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AxDemand>"
      },
      "AxManager.Filter": {
        "type": "object",
        "title": "AxManager.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AxManager.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "snapshotDate": {
                    "type": "boolean"
                  },
                  "totalRecords": {
                    "type": "boolean"
                  },
                  "bufferRecords": {
                    "type": "boolean"
                  },
                  "demandRecords": {
                    "type": "boolean"
                  },
                  "operationplanRecords": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "snapshotDate",
                    "totalRecords",
                    "bufferRecords",
                    "demandRecords",
                    "operationplanRecords"
                  ],
                  "example": "snapshotDate"
                },
                "uniqueItems": true
              }
            ],
            "title": "AxManager.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AxManager>"
      },
      "AxOperationplan.Filter": {
        "type": "object",
        "title": "AxOperationplan.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AxOperationplan.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "snapshotDateId": {
                    "type": "boolean"
                  },
                  "reference": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "startdate": {
                    "type": "boolean"
                  },
                  "enddate": {
                    "type": "boolean"
                  },
                  "operation": {
                    "type": "boolean"
                  },
                  "owner": {
                    "type": "boolean"
                  },
                  "batch": {
                    "type": "boolean"
                  },
                  "item": {
                    "type": "boolean"
                  },
                  "itemCost": {
                    "type": "boolean"
                  },
                  "itemsupplierCost": {
                    "type": "boolean"
                  },
                  "origin": {
                    "type": "boolean"
                  },
                  "destination": {
                    "type": "boolean"
                  },
                  "supplier": {
                    "type": "boolean"
                  },
                  "location": {
                    "type": "boolean"
                  },
                  "demand": {
                    "type": "boolean"
                  },
                  "due": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "snapshotDateId",
                    "reference",
                    "status",
                    "type",
                    "quantity",
                    "startdate",
                    "enddate",
                    "operation",
                    "owner",
                    "batch",
                    "item",
                    "itemCost",
                    "itemsupplierCost",
                    "origin",
                    "destination",
                    "supplier",
                    "location",
                    "demand",
                    "due",
                    "name"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AxOperationplan.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AxOperationplan>"
      },
      "Bom.Filter": {
        "type": "object",
        "title": "Bom.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Bom.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "bomcode": {
                    "type": "boolean"
                  },
                  "usestatus": {
                    "type": "boolean"
                  },
                  "bomskip": {
                    "type": "boolean"
                  },
                  "lastupdateperson": {
                    "type": "boolean"
                  },
                  "lastupdatedate": {
                    "type": "boolean"
                  },
                  "lastusedperson": {
                    "type": "boolean"
                  },
                  "lastuseddate": {
                    "type": "boolean"
                  },
                  "bomentryid": {
                    "type": "boolean"
                  },
                  "materialtype": {
                    "type": "boolean"
                  },
                  "marshaltype": {
                    "type": "boolean"
                  },
                  "stock": {
                    "type": "boolean"
                  },
                  "spbh": {
                    "type": "boolean"
                  },
                  "spname": {
                    "type": "boolean"
                  },
                  "spth": {
                    "type": "boolean"
                  },
                  "gg": {
                    "type": "boolean"
                  },
                  "spclass": {
                    "type": "boolean"
                  },
                  "spquantity": {
                    "type": "boolean"
                  },
                  "spyield": {
                    "type": "boolean"
                  },
                  "bjbm": {
                    "type": "boolean"
                  },
                  "bjname": {
                    "type": "boolean"
                  },
                  "bjth": {
                    "type": "boolean"
                  },
                  "bjgg": {
                    "type": "boolean"
                  },
                  "bjclass": {
                    "type": "boolean"
                  },
                  "bjquantity": {
                    "type": "boolean"
                  },
                  "bjunit": {
                    "type": "boolean"
                  },
                  "bmbm": {
                    "type": "boolean"
                  },
                  "dwname": {
                    "type": "boolean"
                  },
                  "zjm": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "gxbm": {
                    "type": "boolean"
                  },
                  "gxsl": {
                    "type": "boolean"
                  },
                  "rs": {
                    "type": "boolean"
                  },
                  "sj": {
                    "type": "boolean"
                  },
                  "pr": {
                    "type": "boolean"
                  },
                  "bz": {
                    "type": "boolean"
                  },
                  "tjbz": {
                    "type": "boolean"
                  },
                  "mydate": {
                    "type": "boolean"
                  },
                  "class": {
                    "type": "boolean"
                  },
                  "zsj": {
                    "type": "boolean"
                  },
                  "zpr": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "xh": {
                    "type": "boolean"
                  },
                  "erpCode": {
                    "type": "boolean"
                  },
                  "gap": {
                    "type": "boolean"
                  },
                  "quantityCheck": {
                    "type": "boolean"
                  },
                  "woven": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "bomcode",
                    "usestatus",
                    "bomskip",
                    "lastupdateperson",
                    "lastupdatedate",
                    "lastusedperson",
                    "lastuseddate",
                    "bomentryid",
                    "materialtype",
                    "marshaltype",
                    "stock",
                    "spbh",
                    "spname",
                    "spth",
                    "gg",
                    "spclass",
                    "spquantity",
                    "spyield",
                    "bjbm",
                    "bjname",
                    "bjth",
                    "bjgg",
                    "bjclass",
                    "bjquantity",
                    "bjunit",
                    "bmbm",
                    "dwname",
                    "zjm",
                    "name",
                    "description",
                    "gxbm",
                    "gxsl",
                    "rs",
                    "sj",
                    "pr",
                    "bz",
                    "tjbz",
                    "mydate",
                    "class",
                    "zsj",
                    "zpr",
                    "isActive",
                    "createDate",
                    "xh",
                    "erpCode",
                    "gap",
                    "quantityCheck",
                    "woven",
                    "type"
                  ],
                  "example": "bomcode"
                },
                "uniqueItems": true
              }
            ],
            "title": "Bom.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Bom>"
      },
      "Bom2.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Bom2.ScopeFilter"
      },
      "Bom2.IncludeFilter.Items": {
        "title": "Bom2.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "item"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/Bom2.ScopeFilter"
          }
        }
      },
      "Bom2.Filter": {
        "type": "object",
        "title": "Bom2.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Bom2.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "bomcode": {
                    "type": "boolean"
                  },
                  "usestatus": {
                    "type": "boolean"
                  },
                  "bomskip": {
                    "type": "boolean"
                  },
                  "lastupdateperson": {
                    "type": "boolean"
                  },
                  "lastupdatedate": {
                    "type": "boolean"
                  },
                  "lastusedperson": {
                    "type": "boolean"
                  },
                  "lastuseddate": {
                    "type": "boolean"
                  },
                  "bomentryid": {
                    "type": "boolean"
                  },
                  "materialtype": {
                    "type": "boolean"
                  },
                  "marshaltype": {
                    "type": "boolean"
                  },
                  "stock": {
                    "type": "boolean"
                  },
                  "spbh": {
                    "type": "boolean"
                  },
                  "spname": {
                    "type": "boolean"
                  },
                  "spth": {
                    "type": "boolean"
                  },
                  "gg": {
                    "type": "boolean"
                  },
                  "spclass": {
                    "type": "boolean"
                  },
                  "spquantity": {
                    "type": "boolean"
                  },
                  "spyield": {
                    "type": "boolean"
                  },
                  "bjbm": {
                    "type": "boolean"
                  },
                  "bjname": {
                    "type": "boolean"
                  },
                  "bjth": {
                    "type": "boolean"
                  },
                  "bjgg": {
                    "type": "boolean"
                  },
                  "bjclass": {
                    "type": "boolean"
                  },
                  "bjquantity": {
                    "type": "boolean"
                  },
                  "bjunit": {
                    "type": "boolean"
                  },
                  "bmbm": {
                    "type": "boolean"
                  },
                  "dwname": {
                    "type": "boolean"
                  },
                  "zjm": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "gxbm": {
                    "type": "boolean"
                  },
                  "gxsl": {
                    "type": "boolean"
                  },
                  "rs": {
                    "type": "boolean"
                  },
                  "sj": {
                    "type": "boolean"
                  },
                  "pr": {
                    "type": "boolean"
                  },
                  "bz": {
                    "type": "boolean"
                  },
                  "tjbz": {
                    "type": "boolean"
                  },
                  "mydate": {
                    "type": "boolean"
                  },
                  "class": {
                    "type": "boolean"
                  },
                  "zsj": {
                    "type": "boolean"
                  },
                  "zpr": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "gap": {
                    "type": "boolean"
                  },
                  "quantityCheck": {
                    "type": "boolean"
                  },
                  "xh": {
                    "type": "boolean"
                  },
                  "woven": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "erpCode": {
                    "type": "boolean"
                  },
                  "detail": {
                    "type": "boolean"
                  },
                  "itemNeedleNumber": {
                    "type": "boolean"
                  },
                  "itemLineLength": {
                    "type": "boolean"
                  },
                  "itemColor": {
                    "type": "boolean"
                  },
                  "itemBaseLine": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "bomcode",
                    "usestatus",
                    "bomskip",
                    "lastupdateperson",
                    "lastupdatedate",
                    "lastusedperson",
                    "lastuseddate",
                    "bomentryid",
                    "materialtype",
                    "marshaltype",
                    "stock",
                    "spbh",
                    "spname",
                    "spth",
                    "gg",
                    "spclass",
                    "spquantity",
                    "spyield",
                    "bjbm",
                    "bjname",
                    "bjth",
                    "bjgg",
                    "bjclass",
                    "bjquantity",
                    "bjunit",
                    "bmbm",
                    "dwname",
                    "zjm",
                    "name",
                    "description",
                    "gxbm",
                    "gxsl",
                    "rs",
                    "sj",
                    "pr",
                    "bz",
                    "tjbz",
                    "mydate",
                    "class",
                    "zsj",
                    "zpr",
                    "isActive",
                    "createDate",
                    "gap",
                    "quantityCheck",
                    "xh",
                    "woven",
                    "type",
                    "erpCode",
                    "detail",
                    "itemNeedleNumber",
                    "itemLineLength",
                    "itemColor",
                    "itemBaseLine"
                  ],
                  "example": "bomcode"
                },
                "uniqueItems": true
              }
            ],
            "title": "Bom2.Fields"
          },
          "include": {
            "title": "Bom2.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Bom2.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Bom2>"
      },
      "Buffer.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Buffer.ScopeFilter"
      },
      "Buffer.IncludeFilter.Items": {
        "title": "Buffer.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "item",
              "location"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/Buffer.ScopeFilter"
          }
        }
      },
      "Buffer.Filter": {
        "type": "object",
        "title": "Buffer.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Buffer.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "onhand": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "category": {
                    "type": "boolean"
                  },
                  "subcategory": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "minimum": {
                    "type": "boolean"
                  },
                  "minimumCalendarId": {
                    "type": "boolean"
                  },
                  "minInterval": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "batch": {
                    "type": "boolean"
                  },
                  "property": {
                    "type": "boolean"
                  },
                  "realtimeOnhand": {
                    "type": "boolean"
                  },
                  "lastMO": {
                    "type": "boolean"
                  },
                  "lastPO": {
                    "type": "boolean"
                  },
                  "lastDO": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "itemId",
                    "locationId",
                    "onhand",
                    "description",
                    "category",
                    "subcategory",
                    "type",
                    "minimum",
                    "minimumCalendarId",
                    "minInterval",
                    "source",
                    "lastmodified",
                    "batch",
                    "property",
                    "realtimeOnhand",
                    "lastMO",
                    "lastPO",
                    "lastDO",
                    "fullName",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Buffer.Fields"
          },
          "include": {
            "title": "Buffer.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Buffer.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Buffer>"
      },
      "Calendar.Filter": {
        "type": "object",
        "title": "Calendar.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Calendar.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "defaultvalue": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "category": {
                    "type": "boolean"
                  },
                  "subcategory": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "defaultvalue",
                    "description",
                    "category",
                    "subcategory",
                    "source",
                    "lastmodified",
                    "fullName",
                    "isActive",
                    "createDate"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "Calendar.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Calendar>"
      },
      "Calendarbucket.Filter": {
        "type": "object",
        "title": "Calendarbucket.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Calendarbucket.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "calendarId": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  },
                  "startdate": {
                    "type": "boolean"
                  },
                  "enddate": {
                    "type": "boolean"
                  },
                  "monday": {
                    "type": "boolean"
                  },
                  "tuesday": {
                    "type": "boolean"
                  },
                  "wednesday": {
                    "type": "boolean"
                  },
                  "thursday": {
                    "type": "boolean"
                  },
                  "friday": {
                    "type": "boolean"
                  },
                  "saturday": {
                    "type": "boolean"
                  },
                  "sunday": {
                    "type": "boolean"
                  },
                  "starttime": {
                    "type": "boolean"
                  },
                  "endtime": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "calendarId",
                    "priority",
                    "value",
                    "startdate",
                    "enddate",
                    "monday",
                    "tuesday",
                    "wednesday",
                    "thursday",
                    "friday",
                    "saturday",
                    "sunday",
                    "starttime",
                    "endtime",
                    "source",
                    "lastmodified",
                    "fullName",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Calendarbucket.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Calendarbucket>"
      },
      "CommonAttribute.Filter": {
        "type": "object",
        "title": "CommonAttribute.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonAttribute.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "label": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "editable": {
                    "type": "boolean"
                  },
                  "initiallyHidden": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "source",
                    "lastmodified",
                    "id",
                    "name",
                    "label",
                    "type",
                    "editable",
                    "initiallyHidden",
                    "model"
                  ],
                  "example": "source"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonAttribute.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonAttribute>"
      },
      "CommonBucket.Filter": {
        "type": "object",
        "title": "CommonBucket.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonBucket.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "level": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "source",
                    "lastmodified",
                    "name",
                    "description",
                    "level"
                  ],
                  "example": "source"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonBucket.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonBucket>"
      },
      "CommonBucketdetail.Filter": {
        "type": "object",
        "title": "CommonBucketdetail.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonBucketdetail.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "startdate": {
                    "type": "boolean"
                  },
                  "enddate": {
                    "type": "boolean"
                  },
                  "bucketId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "source",
                    "lastmodified",
                    "id",
                    "name",
                    "startdate",
                    "enddate",
                    "bucketId"
                  ],
                  "example": "source"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonBucketdetail.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonBucketdetail>"
      },
      "CommonComment.Filter": {
        "type": "object",
        "title": "CommonComment.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonComment.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "objectPk": {
                    "type": "boolean"
                  },
                  "comment": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "contentTypeId": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "attachment": {
                    "type": "boolean"
                  },
                  "objectRepr": {
                    "type": "boolean"
                  },
                  "processed": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "objectPk",
                    "comment",
                    "lastmodified",
                    "contentTypeId",
                    "userId",
                    "attachment",
                    "objectRepr",
                    "processed",
                    "type"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonComment.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonComment>"
      },
      "CommonFollower.Filter": {
        "type": "object",
        "title": "CommonFollower.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonFollower.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "objectPk": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "contentTypeId": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "args": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "objectPk",
                    "type",
                    "contentTypeId",
                    "userId",
                    "args"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonFollower.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonFollower>"
      },
      "CommonNotification.Filter": {
        "type": "object",
        "title": "CommonNotification.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonNotification.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "commentId": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "followerId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "status",
                    "type",
                    "commentId",
                    "userId",
                    "followerId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonNotification.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonNotification>"
      },
      "CommonParameter.Filter": {
        "type": "object",
        "title": "CommonParameter.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonParameter.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "source",
                    "lastmodified",
                    "name",
                    "value",
                    "description"
                  ],
                  "example": "source"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonParameter.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonParameter>"
      },
      "CommonPreference.Filter": {
        "type": "object",
        "title": "CommonPreference.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonPreference.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "property": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "property",
                    "value",
                    "userId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonPreference.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonPreference>"
      },
      "CommonScenario.Filter": {
        "type": "object",
        "title": "CommonScenario.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonScenario.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "lastrefresh": {
                    "type": "boolean"
                  },
                  "helpUrl": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "description",
                    "status",
                    "lastrefresh",
                    "helpUrl"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonScenario.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonScenario>"
      },
      "CommonUser.Filter": {
        "type": "object",
        "title": "CommonUser.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonUser.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "password": {
                    "type": "boolean"
                  },
                  "lastLogin": {
                    "type": "boolean"
                  },
                  "isSuperuser": {
                    "type": "boolean"
                  },
                  "username": {
                    "type": "boolean"
                  },
                  "firstName": {
                    "type": "boolean"
                  },
                  "lastName": {
                    "type": "boolean"
                  },
                  "email": {
                    "type": "boolean"
                  },
                  "isStaff": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "dateJoined": {
                    "type": "boolean"
                  },
                  "language": {
                    "type": "boolean"
                  },
                  "theme": {
                    "type": "boolean"
                  },
                  "pagesize": {
                    "type": "boolean"
                  },
                  "horizonbuckets": {
                    "type": "boolean"
                  },
                  "horizonstart": {
                    "type": "boolean"
                  },
                  "horizonend": {
                    "type": "boolean"
                  },
                  "horizontype": {
                    "type": "boolean"
                  },
                  "horizonlength": {
                    "type": "boolean"
                  },
                  "horizonunit": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "avatar": {
                    "type": "boolean"
                  },
                  "horizonbefore": {
                    "type": "boolean"
                  },
                  "defaultScenario": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "allowPda": {
                    "type": "boolean"
                  },
                  "locationList": {
                    "type": "boolean"
                  },
                  "resourceList": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "password",
                    "lastLogin",
                    "isSuperuser",
                    "username",
                    "firstName",
                    "lastName",
                    "email",
                    "isStaff",
                    "isActive",
                    "dateJoined",
                    "language",
                    "theme",
                    "pagesize",
                    "horizonbuckets",
                    "horizonstart",
                    "horizonend",
                    "horizontype",
                    "horizonlength",
                    "horizonunit",
                    "lastmodified",
                    "avatar",
                    "horizonbefore",
                    "defaultScenario",
                    "locationId",
                    "resourceId",
                    "allowPda",
                    "locationList",
                    "resourceList"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonUser.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonUser>"
      },
      "CommonUserGroups.Filter": {
        "type": "object",
        "title": "CommonUserGroups.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonUserGroups.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "groupId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "userId",
                    "groupId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonUserGroups.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonUserGroups>"
      },
      "CommonUserUserPermissions.Filter": {
        "type": "object",
        "title": "CommonUserUserPermissions.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CommonUserUserPermissions.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "permissionId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "userId",
                    "permissionId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CommonUserUserPermissions.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CommonUserUserPermissions>"
      },
      "CostOther.Filter": {
        "type": "object",
        "title": "CostOther.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CostOther.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "cost": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "remark": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "year": {
                    "type": "boolean"
                  },
                  "month": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "voucherId": {
                    "type": "boolean"
                  },
                  "voucherEntryId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "cost",
                    "type",
                    "remark",
                    "locationId",
                    "year",
                    "month",
                    "lastmodified",
                    "createDate",
                    "voucherId",
                    "voucherEntryId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CostOther.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CostOther>"
      },
      "CostPatch.Filter": {
        "type": "object",
        "title": "CostPatch.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CostPatch.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "cost": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "remark": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "year": {
                    "type": "boolean"
                  },
                  "month": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "cost",
                    "type",
                    "remark",
                    "demandId",
                    "year",
                    "month",
                    "lastmodified",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CostPatch.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CostPatch>"
      },
      "CostRecord.Filter": {
        "type": "object",
        "title": "CostRecord.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "CostRecord.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "year": {
                    "type": "boolean"
                  },
                  "month": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "customerId": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "isPlanned": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "unfinishedOperationId": {
                    "type": "boolean"
                  },
                  "unfinishedLocationId": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "plannedQuantity": {
                    "type": "boolean"
                  },
                  "reportedQuantityYazhu": {
                    "type": "boolean"
                  },
                  "unfinishedQuantity": {
                    "type": "boolean"
                  },
                  "finishedQuantityTotal": {
                    "type": "boolean"
                  },
                  "finishedQuantityMonth": {
                    "type": "boolean"
                  },
                  "materialQuantityManufacturing": {
                    "type": "boolean"
                  },
                  "materialQuantityOutsouring": {
                    "type": "boolean"
                  },
                  "materialPriceManufacturing": {
                    "type": "boolean"
                  },
                  "materialPriceOutsouring": {
                    "type": "boolean"
                  },
                  "materialCostUnfinished": {
                    "type": "boolean"
                  },
                  "materialCostFinished": {
                    "type": "boolean"
                  },
                  "materialReceiveOperationId": {
                    "type": "boolean"
                  },
                  "materialReceiveLocationId": {
                    "type": "boolean"
                  },
                  "outsouringPrice": {
                    "type": "boolean"
                  },
                  "outsouringCostUnfinished": {
                    "type": "boolean"
                  },
                  "outsouringCostFinished": {
                    "type": "boolean"
                  },
                  "numberPrice": {
                    "type": "boolean"
                  },
                  "numberCostUnfinished": {
                    "type": "boolean"
                  },
                  "numberCostFinished": {
                    "type": "boolean"
                  },
                  "timePrice": {
                    "type": "boolean"
                  },
                  "timeCostUnfinished": {
                    "type": "boolean"
                  },
                  "timeCostFinished": {
                    "type": "boolean"
                  },
                  "uvPrice": {
                    "type": "boolean"
                  },
                  "uvCostUnfinished": {
                    "type": "boolean"
                  },
                  "uvCostFinished": {
                    "type": "boolean"
                  },
                  "otherPrice": {
                    "type": "boolean"
                  },
                  "otherCostUnfinished": {
                    "type": "boolean"
                  },
                  "otherCostFinished": {
                    "type": "boolean"
                  },
                  "totalCostUnfinished": {
                    "type": "boolean"
                  },
                  "totalCostFinished": {
                    "type": "boolean"
                  },
                  "totalCostMonth": {
                    "type": "boolean"
                  },
                  "totalCost": {
                    "type": "boolean"
                  },
                  "totalPriceMonth": {
                    "type": "boolean"
                  },
                  "totalPrice": {
                    "type": "boolean"
                  },
                  "remark": {
                    "type": "boolean"
                  },
                  "modifyDate": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "typeLocationId": {
                    "type": "boolean"
                  },
                  "patchPrice": {
                    "type": "boolean"
                  },
                  "patchCostUnfinished": {
                    "type": "boolean"
                  },
                  "patchCostFinished": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "year",
                    "month",
                    "demandId",
                    "customerId",
                    "type",
                    "isPlanned",
                    "status",
                    "unfinishedOperationId",
                    "unfinishedLocationId",
                    "itemId",
                    "plannedQuantity",
                    "reportedQuantityYazhu",
                    "unfinishedQuantity",
                    "finishedQuantityTotal",
                    "finishedQuantityMonth",
                    "materialQuantityManufacturing",
                    "materialQuantityOutsouring",
                    "materialPriceManufacturing",
                    "materialPriceOutsouring",
                    "materialCostUnfinished",
                    "materialCostFinished",
                    "materialReceiveOperationId",
                    "materialReceiveLocationId",
                    "outsouringPrice",
                    "outsouringCostUnfinished",
                    "outsouringCostFinished",
                    "numberPrice",
                    "numberCostUnfinished",
                    "numberCostFinished",
                    "timePrice",
                    "timeCostUnfinished",
                    "timeCostFinished",
                    "uvPrice",
                    "uvCostUnfinished",
                    "uvCostFinished",
                    "otherPrice",
                    "otherCostUnfinished",
                    "otherCostFinished",
                    "totalCostUnfinished",
                    "totalCostFinished",
                    "totalCostMonth",
                    "totalCost",
                    "totalPriceMonth",
                    "totalPrice",
                    "remark",
                    "modifyDate",
                    "createDate",
                    "typeLocationId",
                    "patchPrice",
                    "patchCostUnfinished",
                    "patchCostFinished"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CostRecord.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<CostRecord>"
      },
      "Customer.Filter": {
        "type": "object",
        "title": "Customer.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Customer.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "category": {
                    "type": "boolean"
                  },
                  "subcategory": {
                    "type": "boolean"
                  },
                  "ownerId": {
                    "type": "boolean"
                  },
                  "lft": {
                    "type": "boolean"
                  },
                  "rght": {
                    "type": "boolean"
                  },
                  "lvl": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "company": {
                    "type": "boolean"
                  },
                  "address": {
                    "type": "boolean"
                  },
                  "telephone": {
                    "type": "boolean"
                  },
                  "email": {
                    "type": "boolean"
                  },
                  "linkman": {
                    "type": "boolean"
                  },
                  "erpCode": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "description",
                    "category",
                    "subcategory",
                    "ownerId",
                    "lft",
                    "rght",
                    "lvl",
                    "source",
                    "lastmodified",
                    "fullName",
                    "company",
                    "address",
                    "telephone",
                    "email",
                    "linkman",
                    "erpCode",
                    "isActive",
                    "createDate"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "Customer.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Customer>"
      },
      "Demand.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Demand.ScopeFilter"
      },
      "Demand.IncludeFilter.Items": {
        "title": "Demand.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "item",
              "location",
              "customer",
              "operation",
              "supplier",
              "operationplan",
              "bom2"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/Demand.ScopeFilter"
          }
        }
      },
      "Demand.Filter": {
        "type": "object",
        "title": "Demand.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Demand.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "customerId": {
                    "type": "boolean"
                  },
                  "due": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "category": {
                    "type": "boolean"
                  },
                  "subcategory": {
                    "type": "boolean"
                  },
                  "minshipment": {
                    "type": "boolean"
                  },
                  "maxlateness": {
                    "type": "boolean"
                  },
                  "delay": {
                    "type": "boolean"
                  },
                  "plannedquantity": {
                    "type": "boolean"
                  },
                  "deliverydate": {
                    "type": "boolean"
                  },
                  "plan": {
                    "type": "boolean"
                  },
                  "ownerId": {
                    "type": "boolean"
                  },
                  "lft": {
                    "type": "boolean"
                  },
                  "rght": {
                    "type": "boolean"
                  },
                  "lvl": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "batch": {
                    "type": "boolean"
                  },
                  "customerdue": {
                    "type": "boolean"
                  },
                  "customerquantity": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "person": {
                    "type": "boolean"
                  },
                  "ready": {
                    "type": "boolean"
                  },
                  "property": {
                    "type": "boolean"
                  },
                  "orderCode": {
                    "type": "boolean"
                  },
                  "totalProductionTime": {
                    "type": "boolean"
                  },
                  "remark": {
                    "type": "boolean"
                  },
                  "plannedLackQuantity": {
                    "type": "boolean"
                  },
                  "storedQuantity": {
                    "type": "boolean"
                  },
                  "storedLackQuantity": {
                    "type": "boolean"
                  },
                  "actualDeliveryDate": {
                    "type": "boolean"
                  },
                  "actualDelay": {
                    "type": "boolean"
                  },
                  "productionStatus": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "onhand": {
                    "type": "boolean"
                  },
                  "estimatedNetDuration": {
                    "type": "boolean"
                  },
                  "class": {
                    "type": "boolean"
                  },
                  "isArchive": {
                    "type": "boolean"
                  },
                  "supplierId": {
                    "type": "boolean"
                  },
                  "priorityClass": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "erpCode": {
                    "type": "boolean"
                  },
                  "operationSizeminimum": {
                    "type": "boolean"
                  },
                  "operationSizemultiple": {
                    "type": "boolean"
                  },
                  "operationSizemaximum": {
                    "type": "boolean"
                  },
                  "bom2Id": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "isFollow": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "isLock": {
                    "type": "boolean"
                  },
                  "isPrinted": {
                    "type": "boolean"
                  },
                  "printPerson": {
                    "type": "boolean"
                  },
                  "isPush": {
                    "type": "boolean"
                  },
                  "createPerson": {
                    "type": "boolean"
                  },
                  "forecastOrder": {
                    "type": "boolean"
                  },
                  "manuOrder": {
                    "type": "boolean"
                  },
                  "bomId": {
                    "type": "boolean"
                  },
                  "isSplit": {
                    "type": "boolean"
                  },
                  "itemPicturecode": {
                    "type": "boolean"
                  },
                  "planDate": {
                    "type": "boolean"
                  },
                  "isEmergency": {
                    "type": "boolean"
                  },
                  "isOutsouring": {
                    "type": "boolean"
                  },
                  "itemResource": {
                    "type": "boolean"
                  },
                  "itemOperation": {
                    "type": "boolean"
                  },
                  "itemMaterial": {
                    "type": "boolean"
                  },
                  "bom2Id2": {
                    "type": "boolean"
                  },
                  "itemFactor": {
                    "type": "boolean"
                  },
                  "detail": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "itemId",
                    "locationId",
                    "customerId",
                    "due",
                    "status",
                    "quantity",
                    "priority",
                    "description",
                    "category",
                    "subcategory",
                    "minshipment",
                    "maxlateness",
                    "delay",
                    "plannedquantity",
                    "deliverydate",
                    "plan",
                    "ownerId",
                    "lft",
                    "rght",
                    "lvl",
                    "source",
                    "lastmodified",
                    "operationId",
                    "batch",
                    "customerdue",
                    "customerquantity",
                    "type",
                    "person",
                    "ready",
                    "property",
                    "orderCode",
                    "totalProductionTime",
                    "remark",
                    "plannedLackQuantity",
                    "storedQuantity",
                    "storedLackQuantity",
                    "actualDeliveryDate",
                    "actualDelay",
                    "productionStatus",
                    "fullName",
                    "onhand",
                    "estimatedNetDuration",
                    "class",
                    "isArchive",
                    "supplierId",
                    "priorityClass",
                    "operationplanReference",
                    "erpCode",
                    "operationSizeminimum",
                    "operationSizemultiple",
                    "operationSizemaximum",
                    "bom2Id",
                    "isActive",
                    "isFollow",
                    "createDate",
                    "isLock",
                    "isPrinted",
                    "printPerson",
                    "isPush",
                    "createPerson",
                    "forecastOrder",
                    "manuOrder",
                    "bomId",
                    "isSplit",
                    "itemPicturecode",
                    "planDate",
                    "isEmergency",
                    "isOutsouring",
                    "itemResource",
                    "itemOperation",
                    "itemMaterial",
                    "bom2Id2",
                    "itemFactor",
                    "detail"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "Demand.Fields"
          },
          "include": {
            "title": "Demand.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Demand.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Demand>"
      },
      "DemandEmergency.Filter": {
        "type": "object",
        "title": "DemandEmergency.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "DemandEmergency.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "demandId": {
                    "type": "boolean"
                  },
                  "due": {
                    "type": "boolean"
                  },
                  "person": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "personChanged": {
                    "type": "boolean"
                  },
                  "quantityChanged": {
                    "type": "boolean"
                  },
                  "dueChanged": {
                    "type": "boolean"
                  },
                  "remark": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "isHide": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "demandId",
                    "due",
                    "person",
                    "quantity",
                    "personChanged",
                    "quantityChanged",
                    "dueChanged",
                    "remark",
                    "createDate",
                    "isHide"
                  ],
                  "example": "demandId"
                },
                "uniqueItems": true
              }
            ],
            "title": "DemandEmergency.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<DemandEmergency>"
      },
      "Department.Filter": {
        "type": "object",
        "title": "Department.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "dwbm": {
                    "type": "boolean"
                  },
                  "dwname": {
                    "type": "boolean"
                  },
                  "zjm": {
                    "type": "boolean"
                  },
                  "mydate": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "dwbm",
                    "dwname",
                    "zjm",
                    "mydate",
                    "locationId"
                  ],
                  "example": "dwbm"
                },
                "uniqueItems": true
              }
            ],
            "title": "Department.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Department>"
      },
      "Department.Filter1": {
        "type": "object",
        "title": "Department.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Department.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "dwbm": {
                    "type": "boolean"
                  },
                  "dwname": {
                    "type": "boolean"
                  },
                  "zjm": {
                    "type": "boolean"
                  },
                  "mydate": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "dwbm",
                    "dwname",
                    "zjm",
                    "mydate",
                    "locationId"
                  ],
                  "example": "dwbm"
                },
                "uniqueItems": true
              }
            ],
            "title": "Department.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Department>"
      },
      "DjangoAdminLog.Filter": {
        "type": "object",
        "title": "DjangoAdminLog.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "DjangoAdminLog.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "actionTime": {
                    "type": "boolean"
                  },
                  "objectId": {
                    "type": "boolean"
                  },
                  "objectRepr": {
                    "type": "boolean"
                  },
                  "actionFlag": {
                    "type": "boolean"
                  },
                  "changeMessage": {
                    "type": "boolean"
                  },
                  "contentTypeId": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "actionTime",
                    "objectId",
                    "objectRepr",
                    "actionFlag",
                    "changeMessage",
                    "contentTypeId",
                    "userId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "DjangoAdminLog.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<DjangoAdminLog>"
      },
      "DjangoContentType.Filter": {
        "type": "object",
        "title": "DjangoContentType.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "DjangoContentType.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "appLabel": {
                    "type": "boolean"
                  },
                  "model": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "appLabel",
                    "model"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "DjangoContentType.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<DjangoContentType>"
      },
      "DjangoMigrations.Filter": {
        "type": "object",
        "title": "DjangoMigrations.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "DjangoMigrations.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "app": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "applied": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "app",
                    "name",
                    "applied"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "DjangoMigrations.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<DjangoMigrations>"
      },
      "ExecuteLog.Filter": {
        "type": "object",
        "title": "ExecuteLog.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "ExecuteLog.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "submitted": {
                    "type": "boolean"
                  },
                  "started": {
                    "type": "boolean"
                  },
                  "finished": {
                    "type": "boolean"
                  },
                  "arguments": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "message": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "logfile": {
                    "type": "boolean"
                  },
                  "processid": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "name",
                    "submitted",
                    "started",
                    "finished",
                    "arguments",
                    "status",
                    "message",
                    "userId",
                    "logfile",
                    "processid"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "ExecuteLog.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<ExecuteLog>"
      },
      "ExecuteSchedule.Filter": {
        "type": "object",
        "title": "ExecuteSchedule.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "ExecuteSchedule.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "nextRun": {
                    "type": "boolean"
                  },
                  "emailFailure": {
                    "type": "boolean"
                  },
                  "emailSuccess": {
                    "type": "boolean"
                  },
                  "data": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "nextRun",
                    "emailFailure",
                    "emailSuccess",
                    "data",
                    "userId"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "ExecuteSchedule.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<ExecuteSchedule>"
      },
      "HasDuplicateOperationIdAllApproved.Filter": {
        "type": "object",
        "title": "HasDuplicateOperationIdAllApproved.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "exists": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "exists"
                  ],
                  "example": "exists"
                },
                "uniqueItems": true
              }
            ],
            "title": "HasDuplicateOperationIdAllApproved.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<HasDuplicateOperationIdAllApproved>"
      },
      "HasDuplicateOperationIdAllApproved.Filter1": {
        "type": "object",
        "title": "HasDuplicateOperationIdAllApproved.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "HasDuplicateOperationIdAllApproved.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "exists": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "exists"
                  ],
                  "example": "exists"
                },
                "uniqueItems": true
              }
            ],
            "title": "HasDuplicateOperationIdAllApproved.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<HasDuplicateOperationIdAllApproved>"
      },
      "HasDuplicateOperationIdWithMixedStatus.Filter": {
        "type": "object",
        "title": "HasDuplicateOperationIdWithMixedStatus.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "exists": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "exists"
                  ],
                  "example": "exists"
                },
                "uniqueItems": true
              }
            ],
            "title": "HasDuplicateOperationIdWithMixedStatus.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<HasDuplicateOperationIdWithMixedStatus>"
      },
      "HasDuplicateOperationIdWithMixedStatus.Filter1": {
        "type": "object",
        "title": "HasDuplicateOperationIdWithMixedStatus.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "HasDuplicateOperationIdWithMixedStatus.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "exists": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "exists"
                  ],
                  "example": "exists"
                },
                "uniqueItems": true
              }
            ],
            "title": "HasDuplicateOperationIdWithMixedStatus.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<HasDuplicateOperationIdWithMixedStatus>"
      },
      "Item.Filter": {
        "type": "object",
        "title": "Item.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Item.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "category": {
                    "type": "boolean"
                  },
                  "subcategory": {
                    "type": "boolean"
                  },
                  "cost": {
                    "type": "boolean"
                  },
                  "ownerId": {
                    "type": "boolean"
                  },
                  "lft": {
                    "type": "boolean"
                  },
                  "rght": {
                    "type": "boolean"
                  },
                  "lvl": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "volume": {
                    "type": "boolean"
                  },
                  "weight": {
                    "type": "boolean"
                  },
                  "periodofcover": {
                    "type": "boolean"
                  },
                  "uom": {
                    "type": "boolean"
                  },
                  "latedemandcount": {
                    "type": "boolean"
                  },
                  "latedemandquantity": {
                    "type": "boolean"
                  },
                  "latedemandvalue": {
                    "type": "boolean"
                  },
                  "unplanneddemandcount": {
                    "type": "boolean"
                  },
                  "unplanneddemandquantity": {
                    "type": "boolean"
                  },
                  "unplanneddemandvalue": {
                    "type": "boolean"
                  },
                  "property": {
                    "type": "boolean"
                  },
                  "specification": {
                    "type": "boolean"
                  },
                  "pictureCode": {
                    "type": "boolean"
                  },
                  "productionName": {
                    "type": "boolean"
                  },
                  "erpCode": {
                    "type": "boolean"
                  },
                  "erpClass": {
                    "type": "boolean"
                  },
                  "baseUnit": {
                    "type": "boolean"
                  },
                  "baseUnitCode": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "productionFullname": {
                    "type": "boolean"
                  },
                  "onhand": {
                    "type": "boolean"
                  },
                  "url": {
                    "type": "boolean"
                  },
                  "color": {
                    "type": "boolean"
                  },
                  "material": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "price1": {
                    "type": "boolean"
                  },
                  "price2": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "stock": {
                    "type": "boolean"
                  },
                  "stockPlace": {
                    "type": "boolean"
                  },
                  "itemGroup": {
                    "type": "boolean"
                  },
                  "hasOperation": {
                    "type": "boolean"
                  },
                  "stockNumber": {
                    "type": "boolean"
                  },
                  "stockPlaceNumber": {
                    "type": "boolean"
                  },
                  "dNumber": {
                    "type": "boolean"
                  },
                  "mNumber": {
                    "type": "boolean"
                  },
                  "parameter": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "description",
                    "category",
                    "subcategory",
                    "cost",
                    "ownerId",
                    "lft",
                    "rght",
                    "lvl",
                    "source",
                    "lastmodified",
                    "type",
                    "volume",
                    "weight",
                    "periodofcover",
                    "uom",
                    "latedemandcount",
                    "latedemandquantity",
                    "latedemandvalue",
                    "unplanneddemandcount",
                    "unplanneddemandquantity",
                    "unplanneddemandvalue",
                    "property",
                    "specification",
                    "pictureCode",
                    "productionName",
                    "erpCode",
                    "erpClass",
                    "baseUnit",
                    "baseUnitCode",
                    "fullName",
                    "productionFullname",
                    "onhand",
                    "url",
                    "color",
                    "material",
                    "isActive",
                    "price1",
                    "price2",
                    "createDate",
                    "stock",
                    "stockPlace",
                    "itemGroup",
                    "hasOperation",
                    "stockNumber",
                    "stockPlaceNumber",
                    "dNumber",
                    "mNumber",
                    "parameter"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "Item.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Item>"
      },
      "Itemdistribution.Filter": {
        "type": "object",
        "title": "Itemdistribution.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Itemdistribution.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "originId": {
                    "type": "boolean"
                  },
                  "leadtime": {
                    "type": "boolean"
                  },
                  "sizeminimum": {
                    "type": "boolean"
                  },
                  "sizemultiple": {
                    "type": "boolean"
                  },
                  "sizemaximum": {
                    "type": "boolean"
                  },
                  "cost": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "effectiveStart": {
                    "type": "boolean"
                  },
                  "effectiveEnd": {
                    "type": "boolean"
                  },
                  "fence": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "resourceQty": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "batchwindow": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "itemId",
                    "locationId",
                    "originId",
                    "leadtime",
                    "sizeminimum",
                    "sizemultiple",
                    "sizemaximum",
                    "cost",
                    "priority",
                    "effectiveStart",
                    "effectiveEnd",
                    "fence",
                    "resourceId",
                    "resourceQty",
                    "source",
                    "lastmodified",
                    "batchwindow",
                    "fullName",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Itemdistribution.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Itemdistribution>"
      },
      "Itemsupplier.Filter": {
        "type": "object",
        "title": "Itemsupplier.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Itemsupplier.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "supplierId": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "leadtime": {
                    "type": "boolean"
                  },
                  "sizeminimum": {
                    "type": "boolean"
                  },
                  "sizemultiple": {
                    "type": "boolean"
                  },
                  "sizemaximum": {
                    "type": "boolean"
                  },
                  "cost": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "effectiveStart": {
                    "type": "boolean"
                  },
                  "effectiveEnd": {
                    "type": "boolean"
                  },
                  "fence": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "resourceQty": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "batchwindow": {
                    "type": "boolean"
                  },
                  "extraSafetyLeadtime": {
                    "type": "boolean"
                  },
                  "hardSafetyLeadtime": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "itemId",
                    "supplierId",
                    "locationId",
                    "leadtime",
                    "sizeminimum",
                    "sizemultiple",
                    "sizemaximum",
                    "cost",
                    "priority",
                    "effectiveStart",
                    "effectiveEnd",
                    "fence",
                    "resourceId",
                    "resourceQty",
                    "source",
                    "lastmodified",
                    "batchwindow",
                    "extraSafetyLeadtime",
                    "hardSafetyLeadtime",
                    "fullName",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Itemsupplier.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Itemsupplier>"
      },
      "Location.Filter": {
        "type": "object",
        "title": "Location.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Location.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "category": {
                    "type": "boolean"
                  },
                  "subcategory": {
                    "type": "boolean"
                  },
                  "availableId": {
                    "type": "boolean"
                  },
                  "ownerId": {
                    "type": "boolean"
                  },
                  "lft": {
                    "type": "boolean"
                  },
                  "rght": {
                    "type": "boolean"
                  },
                  "lvl": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "erpCode": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "description",
                    "category",
                    "subcategory",
                    "availableId",
                    "ownerId",
                    "lft",
                    "rght",
                    "lvl",
                    "source",
                    "lastmodified",
                    "fullName",
                    "erpCode",
                    "isActive",
                    "createDate"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "Location.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Location>"
      },
      "Operation.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Operation.ScopeFilter"
      },
      "Operation.IncludeFilter.Items": {
        "title": "Operation.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "location",
              "item"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/Operation.ScopeFilter"
          }
        }
      },
      "Operation.Filter": {
        "type": "object",
        "title": "Operation.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Operation.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "ownerId": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "category": {
                    "type": "boolean"
                  },
                  "subcategory": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "effectiveStart": {
                    "type": "boolean"
                  },
                  "effectiveEnd": {
                    "type": "boolean"
                  },
                  "fence": {
                    "type": "boolean"
                  },
                  "posttime": {
                    "type": "boolean"
                  },
                  "sizeminimum": {
                    "type": "boolean"
                  },
                  "sizemultiple": {
                    "type": "boolean"
                  },
                  "sizemaximum": {
                    "type": "boolean"
                  },
                  "cost": {
                    "type": "boolean"
                  },
                  "availableId": {
                    "type": "boolean"
                  },
                  "duration": {
                    "type": "boolean"
                  },
                  "durationPer": {
                    "type": "boolean"
                  },
                  "search": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "departmentCode": {
                    "type": "boolean"
                  },
                  "departmentName": {
                    "type": "boolean"
                  },
                  "shortName": {
                    "type": "boolean"
                  },
                  "property": {
                    "type": "boolean"
                  },
                  "itemName": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "isExact": {
                    "type": "boolean"
                  },
                  "remark": {
                    "type": "boolean"
                  },
                  "unit": {
                    "type": "boolean"
                  },
                  "costByNumber": {
                    "type": "boolean"
                  },
                  "costByTime": {
                    "type": "boolean"
                  },
                  "sampleNumber": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "isTiming": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "type",
                    "ownerId",
                    "description",
                    "category",
                    "subcategory",
                    "priority",
                    "effectiveStart",
                    "effectiveEnd",
                    "fence",
                    "posttime",
                    "sizeminimum",
                    "sizemultiple",
                    "sizemaximum",
                    "cost",
                    "availableId",
                    "duration",
                    "durationPer",
                    "search",
                    "itemId",
                    "locationId",
                    "source",
                    "lastmodified",
                    "departmentCode",
                    "departmentName",
                    "shortName",
                    "property",
                    "itemName",
                    "fullName",
                    "isExact",
                    "remark",
                    "unit",
                    "costByNumber",
                    "costByTime",
                    "sampleNumber",
                    "isActive",
                    "createDate",
                    "isTiming"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "Operation.Fields"
          },
          "include": {
            "title": "Operation.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Operation.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Operation>"
      },
      "OperationCostbynumber.Filter": {
        "type": "object",
        "title": "OperationCostbynumber.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "costByNumber": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "billDate",
                    "userId",
                    "userName",
                    "operationId",
                    "costByNumber"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationCostbynumber.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationCostbynumber>"
      },
      "OperationCostbynumber.Filter1": {
        "type": "object",
        "title": "OperationCostbynumber.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationCostbynumber.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "costByNumber": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "billDate",
                    "userId",
                    "userName",
                    "operationId",
                    "costByNumber"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationCostbynumber.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationCostbynumber>"
      },
      "OperationLabel.Filter": {
        "type": "object",
        "title": "OperationLabel.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationLabel.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationGroup": {
                    "type": "boolean"
                  },
                  "operationLabel": {
                    "type": "boolean"
                  },
                  "availableId": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "durationPerMedian": {
                    "type": "boolean"
                  },
                  "departmentCode": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationGroup",
                    "operationLabel",
                    "availableId",
                    "locationId",
                    "resourceId",
                    "lastmodified",
                    "isActive",
                    "createDate",
                    "durationPerMedian",
                    "departmentCode",
                    "priority"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationLabel.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationLabel>"
      },
      "OperationRecord.Filter": {
        "type": "object",
        "title": "OperationRecord.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationplan": {
                    "type": "boolean"
                  },
                  "operation": {
                    "type": "boolean"
                  },
                  "actualStartdate": {
                    "type": "boolean"
                  },
                  "actualEnddate": {
                    "type": "boolean"
                  },
                  "actualDuration": {
                    "type": "boolean"
                  },
                  "actualNetDuration": {
                    "type": "boolean"
                  },
                  "completedQuantity": {
                    "type": "boolean"
                  },
                  "durationPer": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationplan",
                    "operation",
                    "actualStartdate",
                    "actualEnddate",
                    "actualDuration",
                    "actualNetDuration",
                    "completedQuantity",
                    "durationPer",
                    "lastmodified",
                    "createDate",
                    "isError"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationRecord.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationRecord>"
      },
      "OperationRecord.Filter1": {
        "type": "object",
        "title": "OperationRecord.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationRecord.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationplan": {
                    "type": "boolean"
                  },
                  "operation": {
                    "type": "boolean"
                  },
                  "actualStartdate": {
                    "type": "boolean"
                  },
                  "actualEnddate": {
                    "type": "boolean"
                  },
                  "actualDuration": {
                    "type": "boolean"
                  },
                  "actualNetDuration": {
                    "type": "boolean"
                  },
                  "completedQuantity": {
                    "type": "boolean"
                  },
                  "durationPer": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationplan",
                    "operation",
                    "actualStartdate",
                    "actualEnddate",
                    "actualDuration",
                    "actualNetDuration",
                    "completedQuantity",
                    "durationPer",
                    "lastmodified",
                    "createDate",
                    "isError"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationRecord.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationRecord>"
      },
      "OperationRoutingLabel.Filter": {
        "type": "object",
        "title": "OperationRoutingLabel.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationRoutingLabel.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationRouting": {
                    "type": "boolean"
                  },
                  "operationLabel": {
                    "type": "boolean"
                  },
                  "sequence": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationRouting",
                    "operationLabel",
                    "sequence",
                    "lastmodified",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationRoutingLabel.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationRoutingLabel>"
      },
      "OperationRoutingName.Filter": {
        "type": "object",
        "title": "OperationRoutingName.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationRoutingName.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationRouting": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationRouting",
                    "isActive",
                    "lastmodified",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationRoutingName.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationRoutingName>"
      },
      "Operationmaterial.Filter": {
        "type": "object",
        "title": "Operationmaterial.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Operationmaterial.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "quantityFixed": {
                    "type": "boolean"
                  },
                  "transferbatch": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "effectiveStart": {
                    "type": "boolean"
                  },
                  "effectiveEnd": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "search": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "offset": {
                    "type": "boolean"
                  },
                  "property": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "unit": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationId",
                    "itemId",
                    "quantity",
                    "quantityFixed",
                    "transferbatch",
                    "type",
                    "effectiveStart",
                    "effectiveEnd",
                    "name",
                    "priority",
                    "search",
                    "source",
                    "lastmodified",
                    "offset",
                    "property",
                    "fullName",
                    "unit",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Operationmaterial.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Operationmaterial>"
      },
      "Operationplan.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Operationplan.ScopeFilter"
      },
      "Operationplan.IncludeFilter.Items": {
        "title": "Operationplan.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "demand",
              "item",
              "location",
              "operation",
              "operationplanresource",
              "operationplanmaterial",
              "resource"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/Operationplan.ScopeFilter"
          }
        }
      },
      "Operationplan.Filter": {
        "type": "object",
        "title": "Operationplan.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Operationplan.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "reference": {
                    "type": "boolean"
                  },
                  "ownerId": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "color": {
                    "type": "boolean"
                  },
                  "startdate": {
                    "type": "boolean"
                  },
                  "enddate": {
                    "type": "boolean"
                  },
                  "criticality": {
                    "type": "boolean"
                  },
                  "delay": {
                    "type": "boolean"
                  },
                  "due": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "supplierId": {
                    "type": "boolean"
                  },
                  "destinationId": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "originId": {
                    "type": "boolean"
                  },
                  "plan": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "batch": {
                    "type": "boolean"
                  },
                  "quantityCompleted": {
                    "type": "boolean"
                  },
                  "statusValid": {
                    "type": "boolean"
                  },
                  "statusFeedback": {
                    "type": "boolean"
                  },
                  "statusFeedbackVerify": {
                    "type": "boolean"
                  },
                  "statusValidDate": {
                    "type": "boolean"
                  },
                  "statusFeedbackDate": {
                    "type": "boolean"
                  },
                  "statusFeedbackVerifyDate": {
                    "type": "boolean"
                  },
                  "statusValidPerson": {
                    "type": "boolean"
                  },
                  "statusFeedbackPerson": {
                    "type": "boolean"
                  },
                  "statusFeedbackVerifyPerson": {
                    "type": "boolean"
                  },
                  "actualStartdate": {
                    "type": "boolean"
                  },
                  "actualEnddate": {
                    "type": "boolean"
                  },
                  "duration": {
                    "type": "boolean"
                  },
                  "netDuration": {
                    "type": "boolean"
                  },
                  "actualDuration": {
                    "type": "boolean"
                  },
                  "actualNetDuration": {
                    "type": "boolean"
                  },
                  "progress": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "operationPriority": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "completedQuantity": {
                    "type": "boolean"
                  },
                  "qualifiedQuantity": {
                    "type": "boolean"
                  },
                  "unqualifiedQuantity": {
                    "type": "boolean"
                  },
                  "resourcePerson": {
                    "type": "boolean"
                  },
                  "isArchive": {
                    "type": "boolean"
                  },
                  "remark": {
                    "type": "boolean"
                  },
                  "unit": {
                    "type": "boolean"
                  },
                  "isReschedule": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  },
                  "isLock": {
                    "type": "boolean"
                  },
                  "seq": {
                    "type": "boolean"
                  },
                  "detail": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "reference",
                    "ownerId",
                    "status",
                    "type",
                    "quantity",
                    "color",
                    "startdate",
                    "enddate",
                    "criticality",
                    "delay",
                    "due",
                    "name",
                    "demandId",
                    "supplierId",
                    "destinationId",
                    "itemId",
                    "locationId",
                    "operationId",
                    "originId",
                    "plan",
                    "source",
                    "lastmodified",
                    "batch",
                    "quantityCompleted",
                    "statusValid",
                    "statusFeedback",
                    "statusFeedbackVerify",
                    "statusValidDate",
                    "statusFeedbackDate",
                    "statusFeedbackVerifyDate",
                    "statusValidPerson",
                    "statusFeedbackPerson",
                    "statusFeedbackVerifyPerson",
                    "actualStartdate",
                    "actualEnddate",
                    "duration",
                    "netDuration",
                    "actualDuration",
                    "actualNetDuration",
                    "progress",
                    "resourceId",
                    "operationPriority",
                    "fullName",
                    "completedQuantity",
                    "qualifiedQuantity",
                    "unqualifiedQuantity",
                    "resourcePerson",
                    "isArchive",
                    "remark",
                    "unit",
                    "isReschedule",
                    "createDate",
                    "isError",
                    "isLock",
                    "seq",
                    "detail"
                  ],
                  "example": "reference"
                },
                "uniqueItems": true
              }
            ],
            "title": "Operationplan.Fields"
          },
          "include": {
            "title": "Operationplan.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Operationplan.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Operationplan>"
      },
      "OperationplanBom.Filter": {
        "type": "object",
        "title": "OperationplanBom.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanBom.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "modifyDate": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "costPrice": {
                    "type": "boolean"
                  },
                  "isExcept": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "userId",
                    "userName",
                    "billNo",
                    "billDate",
                    "demandId",
                    "operationplanReference",
                    "itemId",
                    "quantity",
                    "modifyDate",
                    "isError",
                    "operationId",
                    "costPrice",
                    "isExcept"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanBom.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanBom>"
      },
      "OperationplanBomPrice.Filter": {
        "type": "object",
        "title": "OperationplanBomPrice.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanBomPrice.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "costPrice": {
                    "type": "boolean"
                  },
                  "iserror": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "createDate",
                    "billNo",
                    "billDate",
                    "demandId",
                    "itemId",
                    "quantity",
                    "costPrice",
                    "iserror"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanBomPrice.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanBomPrice>"
      },
      "OperationplanCheck.Filter": {
        "type": "object",
        "title": "OperationplanCheck.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanCheck.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "checkType": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "isSample": {
                    "type": "boolean"
                  },
                  "sampleRemark": {
                    "type": "boolean"
                  },
                  "isOrder": {
                    "type": "boolean"
                  },
                  "orderRemark": {
                    "type": "boolean"
                  },
                  "isQty": {
                    "type": "boolean"
                  },
                  "qtyRemark": {
                    "type": "boolean"
                  },
                  "isMaterial": {
                    "type": "boolean"
                  },
                  "materialRemark": {
                    "type": "boolean"
                  },
                  "isSpec": {
                    "type": "boolean"
                  },
                  "specRemark": {
                    "type": "boolean"
                  },
                  "isColor": {
                    "type": "boolean"
                  },
                  "colorRemark": {
                    "type": "boolean"
                  },
                  "isTool": {
                    "type": "boolean"
                  },
                  "isOutward": {
                    "type": "boolean"
                  },
                  "outwardType": {
                    "type": "boolean"
                  },
                  "outwardRemark": {
                    "type": "boolean"
                  },
                  "imagesJson": {
                    "type": "boolean"
                  },
                  "modifyDate": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "userId",
                    "userName",
                    "billNo",
                    "billDate",
                    "demandId",
                    "checkType",
                    "operationplanReference",
                    "operationId",
                    "isSample",
                    "sampleRemark",
                    "isOrder",
                    "orderRemark",
                    "isQty",
                    "qtyRemark",
                    "isMaterial",
                    "materialRemark",
                    "isSpec",
                    "specRemark",
                    "isColor",
                    "colorRemark",
                    "isTool",
                    "isOutward",
                    "outwardType",
                    "outwardRemark",
                    "imagesJson",
                    "modifyDate",
                    "isError"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanCheck.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanCheck>"
      },
      "OperationplanComponent.Filter": {
        "type": "object",
        "title": "OperationplanComponent.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "materialCode": {
                    "type": "boolean"
                  },
                  "materialRadio": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "resourcePersonId": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "modifyDate": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "personJson": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "userName",
                    "billDate",
                    "materialCode",
                    "materialRadio",
                    "quantity",
                    "operationplanReference",
                    "resourceId",
                    "userId",
                    "resourcePersonId",
                    "operationId",
                    "demandId",
                    "modifyDate",
                    "locationId",
                    "itemId",
                    "personJson",
                    "isError"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanComponent.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanComponent>"
      },
      "OperationplanComponent.Filter1": {
        "type": "object",
        "title": "OperationplanComponent.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanComponent.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "materialCode": {
                    "type": "boolean"
                  },
                  "materialRadio": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "resourcePersonId": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "modifyDate": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "personJson": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "userName",
                    "billDate",
                    "materialCode",
                    "materialRadio",
                    "quantity",
                    "operationplanReference",
                    "resourceId",
                    "userId",
                    "resourcePersonId",
                    "operationId",
                    "demandId",
                    "modifyDate",
                    "locationId",
                    "itemId",
                    "personJson",
                    "isError"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanComponent.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanComponent>"
      },
      "OperationplanDefective.Filter": {
        "type": "object",
        "title": "OperationplanDefective.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanDefective.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "modifyDate": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "reason": {
                    "type": "boolean"
                  },
                  "suggest": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "billNo",
                    "billDate",
                    "userId",
                    "userName",
                    "demandId",
                    "operationplanReference",
                    "modifyDate",
                    "quantity",
                    "reason",
                    "suggest",
                    "isError"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanDefective.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanDefective>"
      },
      "OperationplanFinish.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "OperationplanFinish.ScopeFilter"
      },
      "OperationplanFinish.IncludeFilter.Items": {
        "title": "OperationplanFinish.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "demand"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/OperationplanFinish.ScopeFilter"
          }
        }
      },
      "OperationplanFinish.Filter": {
        "type": "object",
        "title": "OperationplanFinish.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanFinish.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "modifyDate": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "billNo",
                    "billDate",
                    "userId",
                    "userName",
                    "demandId",
                    "operationplanReference",
                    "modifyDate",
                    "quantity",
                    "isError"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanFinish.Fields"
          },
          "include": {
            "title": "OperationplanFinish.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/OperationplanFinish.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanFinish>"
      },
      "OperationplanLogs.Filter": {
        "type": "object",
        "title": "OperationplanLogs.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanLogs.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "statusFeedback": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "billDate",
                    "userId",
                    "userName",
                    "demandId",
                    "operationplanReference",
                    "operationId",
                    "statusFeedback"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanLogs.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanLogs>"
      },
      "OperationplanPause.Filter": {
        "type": "object",
        "title": "OperationplanPause.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "pausedate": {
                    "type": "boolean"
                  },
                  "restartdate": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "netDuration": {
                    "type": "boolean"
                  },
                  "isUse": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationplanReference",
                    "pausedate",
                    "restartdate",
                    "createDate",
                    "isError",
                    "demandId",
                    "operationId",
                    "netDuration",
                    "isUse"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanPause.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanPause>"
      },
      "OperationplanPause.Filter1": {
        "type": "object",
        "title": "OperationplanPause.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanPause.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "pausedate": {
                    "type": "boolean"
                  },
                  "restartdate": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "netDuration": {
                    "type": "boolean"
                  },
                  "isUse": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationplanReference",
                    "pausedate",
                    "restartdate",
                    "createDate",
                    "isError",
                    "demandId",
                    "operationId",
                    "netDuration",
                    "isUse"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanPause.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanPause>"
      },
      "OperationplanQty.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "OperationplanQty.ScopeFilter"
      },
      "OperationplanQty.IncludeFilter.Items": {
        "title": "OperationplanQty.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "operationplan",
              "resource",
              "operation",
              "demand",
              "item",
              "location"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/OperationplanQty.ScopeFilter"
          }
        }
      },
      "OperationplanQty.Filter": {
        "type": "object",
        "title": "OperationplanQty.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanQty.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "completedQuantity": {
                    "type": "boolean"
                  },
                  "completedDate": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "resourcePersonId": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "modifyDate": {
                    "type": "boolean"
                  },
                  "startDate": {
                    "type": "boolean"
                  },
                  "overTime": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "netDuration": {
                    "type": "boolean"
                  },
                  "personJson": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  },
                  "isCasting": {
                    "type": "boolean"
                  },
                  "oneWeight": {
                    "type": "boolean"
                  },
                  "totalWeight": {
                    "type": "boolean"
                  },
                  "castingLostRadio": {
                    "type": "boolean"
                  },
                  "castingPrice": {
                    "type": "boolean"
                  },
                  "pauseDuration": {
                    "type": "boolean"
                  },
                  "validDuration": {
                    "type": "boolean"
                  },
                  "versionCode": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "userName",
                    "completedQuantity",
                    "completedDate",
                    "operationplanReference",
                    "resourceId",
                    "userId",
                    "resourcePersonId",
                    "operationId",
                    "demandId",
                    "modifyDate",
                    "startDate",
                    "overTime",
                    "itemId",
                    "locationId",
                    "netDuration",
                    "personJson",
                    "isError",
                    "isCasting",
                    "oneWeight",
                    "totalWeight",
                    "castingLostRadio",
                    "castingPrice",
                    "pauseDuration",
                    "validDuration",
                    "versionCode"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanQty.Fields"
          },
          "include": {
            "title": "OperationplanQty.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/OperationplanQty.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanQty>"
      },
      "OperationplanQtyCopy.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "OperationplanQtyCopy.ScopeFilter"
      },
      "OperationplanQtyCopy.IncludeFilter.Items": {
        "title": "OperationplanQtyCopy.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "operationplan",
              "resource",
              "operation",
              "demand",
              "item",
              "location"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/OperationplanQtyCopy.ScopeFilter"
          }
        }
      },
      "OperationplanQtyCopy.Filter": {
        "type": "object",
        "title": "OperationplanQtyCopy.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanQtyCopy.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "userName": {
                    "type": "boolean"
                  },
                  "completedQuantity": {
                    "type": "boolean"
                  },
                  "completedDate": {
                    "type": "boolean"
                  },
                  "operationplanReference": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "resourcePersonId": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "modifyDate": {
                    "type": "boolean"
                  },
                  "startDate": {
                    "type": "boolean"
                  },
                  "overTime": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "netDuration": {
                    "type": "boolean"
                  },
                  "personJson": {
                    "type": "boolean"
                  },
                  "personNumber": {
                    "type": "boolean"
                  },
                  "idQty": {
                    "type": "boolean"
                  },
                  "isError": {
                    "type": "boolean"
                  },
                  "costByNumber": {
                    "type": "boolean"
                  },
                  "costByTime": {
                    "type": "boolean"
                  },
                  "isCasting": {
                    "type": "boolean"
                  },
                  "oneWeight": {
                    "type": "boolean"
                  },
                  "totalWeight": {
                    "type": "boolean"
                  },
                  "castingLostRadio": {
                    "type": "boolean"
                  },
                  "castingPrice": {
                    "type": "boolean"
                  },
                  "costByNumberPer": {
                    "type": "boolean"
                  },
                  "costByTimeYear": {
                    "type": "boolean"
                  },
                  "costByTimeMonth": {
                    "type": "boolean"
                  },
                  "netDurationPer": {
                    "type": "boolean"
                  },
                  "costByTimeError": {
                    "type": "boolean"
                  },
                  "pauseDuration": {
                    "type": "boolean"
                  },
                  "validDuration": {
                    "type": "boolean"
                  },
                  "costOther": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "userName",
                    "completedQuantity",
                    "completedDate",
                    "operationplanReference",
                    "resourceId",
                    "userId",
                    "resourcePersonId",
                    "operationId",
                    "demandId",
                    "modifyDate",
                    "startDate",
                    "overTime",
                    "itemId",
                    "locationId",
                    "netDuration",
                    "personJson",
                    "personNumber",
                    "idQty",
                    "isError",
                    "costByNumber",
                    "costByTime",
                    "isCasting",
                    "oneWeight",
                    "totalWeight",
                    "castingLostRadio",
                    "castingPrice",
                    "costByNumberPer",
                    "costByTimeYear",
                    "costByTimeMonth",
                    "netDurationPer",
                    "costByTimeError",
                    "pauseDuration",
                    "validDuration",
                    "costOther"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanQtyCopy.Fields"
          },
          "include": {
            "title": "OperationplanQtyCopy.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/OperationplanQtyCopy.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanQtyCopy>"
      },
      "OperationplanTemp.Filter": {
        "type": "object",
        "title": "OperationplanTemp.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperationplanTemp.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "reference": {
                    "type": "boolean"
                  },
                  "ownerId": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "reference",
                    "ownerId",
                    "status",
                    "demandId",
                    "operationId"
                  ],
                  "example": "reference"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperationplanTemp.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperationplanTemp>"
      },
      "Operationplanmaterial.Filter": {
        "type": "object",
        "title": "Operationplanmaterial.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Operationplanmaterial.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationplanId": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "flowdate": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "onhand": {
                    "type": "boolean"
                  },
                  "minimum": {
                    "type": "boolean"
                  },
                  "periodofcover": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "property": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "unit": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationplanId",
                    "itemId",
                    "locationId",
                    "flowdate",
                    "quantity",
                    "onhand",
                    "minimum",
                    "periodofcover",
                    "status",
                    "source",
                    "lastmodified",
                    "property",
                    "fullName",
                    "unit",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Operationplanmaterial.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Operationplanmaterial>"
      },
      "Operationplanresource.Filter": {
        "type": "object",
        "title": "Operationplanresource.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Operationplanresource.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationplanId": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "startdate": {
                    "type": "boolean"
                  },
                  "enddate": {
                    "type": "boolean"
                  },
                  "setup": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationplanId",
                    "resourceId",
                    "quantity",
                    "startdate",
                    "enddate",
                    "setup",
                    "status",
                    "source",
                    "lastmodified",
                    "fullName",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Operationplanresource.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Operationplanresource>"
      },
      "Operationresource.Filter": {
        "type": "object",
        "title": "Operationresource.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Operationresource.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "quantity": {
                    "type": "boolean"
                  },
                  "quantityFixed": {
                    "type": "boolean"
                  },
                  "effectiveStart": {
                    "type": "boolean"
                  },
                  "effectiveEnd": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "setup": {
                    "type": "boolean"
                  },
                  "search": {
                    "type": "boolean"
                  },
                  "skillId": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "property": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationId",
                    "resourceId",
                    "quantity",
                    "quantityFixed",
                    "effectiveStart",
                    "effectiveEnd",
                    "name",
                    "priority",
                    "setup",
                    "search",
                    "skillId",
                    "source",
                    "lastmodified",
                    "fullName",
                    "createDate",
                    "property"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Operationresource.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Operationresource>"
      },
      "OutConstraint.Filter": {
        "type": "object",
        "title": "OutConstraint.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OutConstraint.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "demand": {
                    "type": "boolean"
                  },
                  "entity": {
                    "type": "boolean"
                  },
                  "owner": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "startdate": {
                    "type": "boolean"
                  },
                  "enddate": {
                    "type": "boolean"
                  },
                  "weight": {
                    "type": "boolean"
                  },
                  "forecast": {
                    "type": "boolean"
                  },
                  "item": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "demand",
                    "entity",
                    "owner",
                    "name",
                    "description",
                    "startdate",
                    "enddate",
                    "weight",
                    "forecast",
                    "item"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OutConstraint.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OutConstraint>"
      },
      "OutProblem.Filter": {
        "type": "object",
        "title": "OutProblem.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OutProblem.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "entity": {
                    "type": "boolean"
                  },
                  "owner": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "startdate": {
                    "type": "boolean"
                  },
                  "enddate": {
                    "type": "boolean"
                  },
                  "weight": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "entity",
                    "owner",
                    "name",
                    "description",
                    "startdate",
                    "enddate",
                    "weight"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OutProblem.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OutProblem>"
      },
      "OutResourceplan.Filter": {
        "type": "object",
        "title": "OutResourceplan.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OutResourceplan.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "resource": {
                    "type": "boolean"
                  },
                  "startdate": {
                    "type": "boolean"
                  },
                  "available": {
                    "type": "boolean"
                  },
                  "unavailable": {
                    "type": "boolean"
                  },
                  "setup": {
                    "type": "boolean"
                  },
                  "load": {
                    "type": "boolean"
                  },
                  "free": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "resource",
                    "startdate",
                    "available",
                    "unavailable",
                    "setup",
                    "load",
                    "free"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OutResourceplan.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OutResourceplan>"
      },
      "PgStatStatements.Filter": {
        "type": "object",
        "title": "PgStatStatements.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "userid": {
                    "type": "boolean"
                  },
                  "dbid": {
                    "type": "boolean"
                  },
                  "toplevel": {
                    "type": "boolean"
                  },
                  "queryid": {
                    "type": "boolean"
                  },
                  "query": {
                    "type": "boolean"
                  },
                  "plans": {
                    "type": "boolean"
                  },
                  "totalPlanTime": {
                    "type": "boolean"
                  },
                  "minPlanTime": {
                    "type": "boolean"
                  },
                  "maxPlanTime": {
                    "type": "boolean"
                  },
                  "meanPlanTime": {
                    "type": "boolean"
                  },
                  "stddevPlanTime": {
                    "type": "boolean"
                  },
                  "calls": {
                    "type": "boolean"
                  },
                  "totalExecTime": {
                    "type": "boolean"
                  },
                  "minExecTime": {
                    "type": "boolean"
                  },
                  "maxExecTime": {
                    "type": "boolean"
                  },
                  "meanExecTime": {
                    "type": "boolean"
                  },
                  "stddevExecTime": {
                    "type": "boolean"
                  },
                  "rows": {
                    "type": "boolean"
                  },
                  "sharedBlksHit": {
                    "type": "boolean"
                  },
                  "sharedBlksRead": {
                    "type": "boolean"
                  },
                  "sharedBlksDirtied": {
                    "type": "boolean"
                  },
                  "sharedBlksWritten": {
                    "type": "boolean"
                  },
                  "localBlksHit": {
                    "type": "boolean"
                  },
                  "localBlksRead": {
                    "type": "boolean"
                  },
                  "localBlksDirtied": {
                    "type": "boolean"
                  },
                  "localBlksWritten": {
                    "type": "boolean"
                  },
                  "tempBlksRead": {
                    "type": "boolean"
                  },
                  "tempBlksWritten": {
                    "type": "boolean"
                  },
                  "blkReadTime": {
                    "type": "boolean"
                  },
                  "blkWriteTime": {
                    "type": "boolean"
                  },
                  "walRecords": {
                    "type": "boolean"
                  },
                  "walFpi": {
                    "type": "boolean"
                  },
                  "walBytes": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "userid",
                    "dbid",
                    "toplevel",
                    "queryid",
                    "query",
                    "plans",
                    "totalPlanTime",
                    "minPlanTime",
                    "maxPlanTime",
                    "meanPlanTime",
                    "stddevPlanTime",
                    "calls",
                    "totalExecTime",
                    "minExecTime",
                    "maxExecTime",
                    "meanExecTime",
                    "stddevExecTime",
                    "rows",
                    "sharedBlksHit",
                    "sharedBlksRead",
                    "sharedBlksDirtied",
                    "sharedBlksWritten",
                    "localBlksHit",
                    "localBlksRead",
                    "localBlksDirtied",
                    "localBlksWritten",
                    "tempBlksRead",
                    "tempBlksWritten",
                    "blkReadTime",
                    "blkWriteTime",
                    "walRecords",
                    "walFpi",
                    "walBytes"
                  ],
                  "example": "userid"
                },
                "uniqueItems": true
              }
            ],
            "title": "PgStatStatements.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<PgStatStatements>"
      },
      "PgStatStatements.Filter1": {
        "type": "object",
        "title": "PgStatStatements.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "PgStatStatements.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "userid": {
                    "type": "boolean"
                  },
                  "dbid": {
                    "type": "boolean"
                  },
                  "toplevel": {
                    "type": "boolean"
                  },
                  "queryid": {
                    "type": "boolean"
                  },
                  "query": {
                    "type": "boolean"
                  },
                  "plans": {
                    "type": "boolean"
                  },
                  "totalPlanTime": {
                    "type": "boolean"
                  },
                  "minPlanTime": {
                    "type": "boolean"
                  },
                  "maxPlanTime": {
                    "type": "boolean"
                  },
                  "meanPlanTime": {
                    "type": "boolean"
                  },
                  "stddevPlanTime": {
                    "type": "boolean"
                  },
                  "calls": {
                    "type": "boolean"
                  },
                  "totalExecTime": {
                    "type": "boolean"
                  },
                  "minExecTime": {
                    "type": "boolean"
                  },
                  "maxExecTime": {
                    "type": "boolean"
                  },
                  "meanExecTime": {
                    "type": "boolean"
                  },
                  "stddevExecTime": {
                    "type": "boolean"
                  },
                  "rows": {
                    "type": "boolean"
                  },
                  "sharedBlksHit": {
                    "type": "boolean"
                  },
                  "sharedBlksRead": {
                    "type": "boolean"
                  },
                  "sharedBlksDirtied": {
                    "type": "boolean"
                  },
                  "sharedBlksWritten": {
                    "type": "boolean"
                  },
                  "localBlksHit": {
                    "type": "boolean"
                  },
                  "localBlksRead": {
                    "type": "boolean"
                  },
                  "localBlksDirtied": {
                    "type": "boolean"
                  },
                  "localBlksWritten": {
                    "type": "boolean"
                  },
                  "tempBlksRead": {
                    "type": "boolean"
                  },
                  "tempBlksWritten": {
                    "type": "boolean"
                  },
                  "blkReadTime": {
                    "type": "boolean"
                  },
                  "blkWriteTime": {
                    "type": "boolean"
                  },
                  "walRecords": {
                    "type": "boolean"
                  },
                  "walFpi": {
                    "type": "boolean"
                  },
                  "walBytes": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "userid",
                    "dbid",
                    "toplevel",
                    "queryid",
                    "query",
                    "plans",
                    "totalPlanTime",
                    "minPlanTime",
                    "maxPlanTime",
                    "meanPlanTime",
                    "stddevPlanTime",
                    "calls",
                    "totalExecTime",
                    "minExecTime",
                    "maxExecTime",
                    "meanExecTime",
                    "stddevExecTime",
                    "rows",
                    "sharedBlksHit",
                    "sharedBlksRead",
                    "sharedBlksDirtied",
                    "sharedBlksWritten",
                    "localBlksHit",
                    "localBlksRead",
                    "localBlksDirtied",
                    "localBlksWritten",
                    "tempBlksRead",
                    "tempBlksWritten",
                    "blkReadTime",
                    "blkWriteTime",
                    "walRecords",
                    "walFpi",
                    "walBytes"
                  ],
                  "example": "userid"
                },
                "uniqueItems": true
              }
            ],
            "title": "PgStatStatements.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<PgStatStatements>"
      },
      "PgStatStatementsInfo.Filter": {
        "type": "object",
        "title": "PgStatStatementsInfo.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "dealloc": {
                    "type": "boolean"
                  },
                  "statsReset": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "dealloc",
                    "statsReset"
                  ],
                  "example": "dealloc"
                },
                "uniqueItems": true
              }
            ],
            "title": "PgStatStatementsInfo.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<PgStatStatementsInfo>"
      },
      "PgStatStatementsInfo.Filter1": {
        "type": "object",
        "title": "PgStatStatementsInfo.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "PgStatStatementsInfo.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "dealloc": {
                    "type": "boolean"
                  },
                  "statsReset": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "dealloc",
                    "statsReset"
                  ],
                  "example": "dealloc"
                },
                "uniqueItems": true
              }
            ],
            "title": "PgStatStatementsInfo.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<PgStatStatementsInfo>"
      },
      "PingResponse": {
        "type": "object",
        "title": "PingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "ReportmanagerColumn.Filter": {
        "type": "object",
        "title": "ReportmanagerColumn.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "ReportmanagerColumn.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "sequence": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "format": {
                    "type": "boolean"
                  },
                  "reportId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "source",
                    "lastmodified",
                    "id",
                    "sequence",
                    "name",
                    "format",
                    "reportId"
                  ],
                  "example": "source"
                },
                "uniqueItems": true
              }
            ],
            "title": "ReportmanagerColumn.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<ReportmanagerColumn>"
      },
      "ReportmanagerReport.Filter": {
        "type": "object",
        "title": "ReportmanagerReport.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "ReportmanagerReport.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "sql": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "public": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "name",
                    "sql",
                    "description",
                    "public",
                    "userId",
                    "source",
                    "lastmodified"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "ReportmanagerReport.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<ReportmanagerReport>"
      },
      "Resource.Filter": {
        "type": "object",
        "title": "Resource.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Resource.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "category": {
                    "type": "boolean"
                  },
                  "subcategory": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "constrained": {
                    "type": "boolean"
                  },
                  "maximum": {
                    "type": "boolean"
                  },
                  "cost": {
                    "type": "boolean"
                  },
                  "maxearly": {
                    "type": "boolean"
                  },
                  "setup": {
                    "type": "boolean"
                  },
                  "locationId": {
                    "type": "boolean"
                  },
                  "availableId": {
                    "type": "boolean"
                  },
                  "efficiency": {
                    "type": "boolean"
                  },
                  "efficiencyCalendarId": {
                    "type": "boolean"
                  },
                  "maximumCalendarId": {
                    "type": "boolean"
                  },
                  "ownerId": {
                    "type": "boolean"
                  },
                  "setupmatrixId": {
                    "type": "boolean"
                  },
                  "lft": {
                    "type": "boolean"
                  },
                  "rght": {
                    "type": "boolean"
                  },
                  "lvl": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "overloadcount": {
                    "type": "boolean"
                  },
                  "property": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "person": {
                    "type": "boolean"
                  },
                  "erpCode": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "salary": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "description",
                    "category",
                    "subcategory",
                    "type",
                    "constrained",
                    "maximum",
                    "cost",
                    "maxearly",
                    "setup",
                    "locationId",
                    "availableId",
                    "efficiency",
                    "efficiencyCalendarId",
                    "maximumCalendarId",
                    "ownerId",
                    "setupmatrixId",
                    "lft",
                    "rght",
                    "lvl",
                    "source",
                    "lastmodified",
                    "overloadcount",
                    "property",
                    "fullName",
                    "person",
                    "erpCode",
                    "isActive",
                    "status",
                    "createDate",
                    "salary"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "Resource.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Resource>"
      },
      "Resourceskill.Filter": {
        "type": "object",
        "title": "Resourceskill.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Resourceskill.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "skillId": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "effectiveStart": {
                    "type": "boolean"
                  },
                  "effectiveEnd": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "resourceId",
                    "skillId",
                    "priority",
                    "effectiveStart",
                    "effectiveEnd",
                    "source",
                    "lastmodified",
                    "fullName",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Resourceskill.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Resourceskill>"
      },
      "Setupmatrix.Filter": {
        "type": "object",
        "title": "Setupmatrix.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Setupmatrix.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "source",
                    "lastmodified",
                    "fullName",
                    "createDate"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "Setupmatrix.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Setupmatrix>"
      },
      "Setuprule.Filter": {
        "type": "object",
        "title": "Setuprule.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Setuprule.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "setupmatrixId": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "fromsetup": {
                    "type": "boolean"
                  },
                  "tosetup": {
                    "type": "boolean"
                  },
                  "duration": {
                    "type": "boolean"
                  },
                  "cost": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "resourceId": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "setupmatrixId",
                    "priority",
                    "fromsetup",
                    "tosetup",
                    "duration",
                    "cost",
                    "source",
                    "lastmodified",
                    "resourceId",
                    "fullName",
                    "createDate"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Setuprule.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Setuprule>"
      },
      "Skill.Filter": {
        "type": "object",
        "title": "Skill.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Skill.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "source",
                    "lastmodified",
                    "fullName",
                    "createDate"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "Skill.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Skill>"
      },
      "Suboperation.Filter": {
        "type": "object",
        "title": "Suboperation.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Suboperation.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "operationId": {
                    "type": "boolean"
                  },
                  "suboperationId": {
                    "type": "boolean"
                  },
                  "priority": {
                    "type": "boolean"
                  },
                  "effectiveStart": {
                    "type": "boolean"
                  },
                  "effectiveEnd": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "operationId",
                    "suboperationId",
                    "priority",
                    "effectiveStart",
                    "effectiveEnd",
                    "source",
                    "lastmodified"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Suboperation.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Suboperation>"
      },
      "Supplier.Filter": {
        "type": "object",
        "title": "Supplier.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Supplier.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "category": {
                    "type": "boolean"
                  },
                  "subcategory": {
                    "type": "boolean"
                  },
                  "availableId": {
                    "type": "boolean"
                  },
                  "ownerId": {
                    "type": "boolean"
                  },
                  "lft": {
                    "type": "boolean"
                  },
                  "rght": {
                    "type": "boolean"
                  },
                  "lvl": {
                    "type": "boolean"
                  },
                  "source": {
                    "type": "boolean"
                  },
                  "lastmodified": {
                    "type": "boolean"
                  },
                  "fullName": {
                    "type": "boolean"
                  },
                  "company": {
                    "type": "boolean"
                  },
                  "address": {
                    "type": "boolean"
                  },
                  "telephone": {
                    "type": "boolean"
                  },
                  "email": {
                    "type": "boolean"
                  },
                  "linkman": {
                    "type": "boolean"
                  },
                  "erpCode": {
                    "type": "boolean"
                  },
                  "isActive": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "operation": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "name",
                    "description",
                    "category",
                    "subcategory",
                    "availableId",
                    "ownerId",
                    "lft",
                    "rght",
                    "lvl",
                    "source",
                    "lastmodified",
                    "fullName",
                    "company",
                    "address",
                    "telephone",
                    "email",
                    "linkman",
                    "erpCode",
                    "isActive",
                    "createDate",
                    "operation"
                  ],
                  "example": "name"
                },
                "uniqueItems": true
              }
            ],
            "title": "Supplier.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Supplier>"
      },
      "SupplierPrice.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "SupplierPrice.ScopeFilter"
      },
      "SupplierPrice.IncludeFilter.Items": {
        "title": "SupplierPrice.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "supplier",
              "demand",
              "item"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/SupplierPrice.ScopeFilter"
          }
        }
      },
      "SupplierPrice.Filter": {
        "type": "object",
        "title": "SupplierPrice.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "SupplierPrice.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "billNo": {
                    "type": "boolean"
                  },
                  "billDate": {
                    "type": "boolean"
                  },
                  "modifyDate": {
                    "type": "boolean"
                  },
                  "supplierId": {
                    "type": "boolean"
                  },
                  "demandId": {
                    "type": "boolean"
                  },
                  "itemId": {
                    "type": "boolean"
                  },
                  "price": {
                    "type": "boolean"
                  },
                  "remark": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "iserror": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "billNo",
                    "billDate",
                    "modifyDate",
                    "supplierId",
                    "demandId",
                    "itemId",
                    "price",
                    "remark",
                    "createDate",
                    "iserror"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "SupplierPrice.Fields"
          },
          "include": {
            "title": "SupplierPrice.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/SupplierPrice.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<SupplierPrice>"
      },
      "Target.Filter": {
        "type": "object",
        "title": "Target.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Target.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "location": {
                    "type": "boolean"
                  },
                  "demandCount": {
                    "type": "boolean"
                  },
                  "demandQuantity": {
                    "type": "boolean"
                  },
                  "finishedCount": {
                    "type": "boolean"
                  },
                  "finishedQuantity": {
                    "type": "boolean"
                  },
                  "year": {
                    "type": "boolean"
                  },
                  "month": {
                    "type": "boolean"
                  },
                  "progress": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "operation": {
                    "type": "boolean"
                  },
                  "createDate": {
                    "type": "boolean"
                  },
                  "updateDate": {
                    "type": "boolean"
                  },
                  "remark": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "location",
                    "demandCount",
                    "demandQuantity",
                    "finishedCount",
                    "finishedQuantity",
                    "year",
                    "month",
                    "progress",
                    "status",
                    "operation",
                    "createDate",
                    "updateDate",
                    "remark"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Target.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Target>"
      }
    },
    "securitySchemes": {
      "jwt": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "jwt": []
    }
  ]
}