Browse Source

1, graphql类型long改为id

tags/B.2.6.7_20240112_base
yk 1 year ago
parent
commit
9ccd450120
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      xueyi-modules/xueyi-system/src/main/resources/graphql/passRecords.graphqls

+ 4
- 4
xueyi-modules/xueyi-system/src/main/resources/graphql/passRecords.graphqls View File

@@ -1,7 +1,7 @@
extend type Query {
passRecords(
userName:String
userId:Long
userId:ID
type:Int
startDate:Date
endDate:Date
@@ -12,10 +12,10 @@ extend type Query {


type PassRecord {
id: Long
id: ID
userName: String
userId: Long
userId: ID
faceUrl: String
recognizedTime: Date
recognizedTime: DateTime
type: Int
}

Loading…
Cancel
Save