Browse Source

update

master
shenjiachi 1 week ago
parent
commit
b3113e15eb
4 changed files with 20 additions and 4 deletions
  1. +7
    -1
      docs/docs.go
  2. +7
    -1
      docs/swagger.json
  3. +5
    -1
      docs/swagger.yaml
  4. +1
    -1
      go.mod

+ 7
- 1
docs/docs.go View File

@@ -11827,7 +11827,10 @@ const docTemplate = `{
"type": "string" "type": "string"
}, },
"level": { "level": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
}, },
"platform": { "platform": {
"type": "string" "type": "string"
@@ -14369,6 +14372,9 @@ const docTemplate = `{
"model.UserLevelTask": { "model.UserLevelTask": {
"type": "object", "type": "object",
"properties": { "properties": {
"active_days": {
"type": "integer"
},
"create_at": { "create_at": {
"type": "string" "type": "string"
}, },


+ 7
- 1
docs/swagger.json View File

@@ -11820,7 +11820,10 @@
"type": "string" "type": "string"
}, },
"level": { "level": {
"type": "string"
"type": "array",
"items": {
"type": "string"
}
}, },
"platform": { "platform": {
"type": "string" "type": "string"
@@ -14362,6 +14365,9 @@
"model.UserLevelTask": { "model.UserLevelTask": {
"type": "object", "type": "object",
"properties": { "properties": {
"active_days": {
"type": "integer"
},
"create_at": { "create_at": {
"type": "string" "type": "string"
}, },


+ 5
- 1
docs/swagger.yaml View File

@@ -2990,7 +2990,9 @@ definitions:
id: id:
type: string type: string
level: level:
type: string
items:
type: string
type: array
platform: platform:
type: string type: string
send_end_time: send_end_time:
@@ -4753,6 +4755,8 @@ definitions:
type: object type: object
model.UserLevelTask: model.UserLevelTask:
properties: properties:
active_days:
type: integer
create_at: create_at:
type: string type: string
finish_count: finish_count:


+ 1
- 1
go.mod View File

@@ -33,7 +33,7 @@ require (
) )


require ( require (
code.fnuoos.com/EggPlanet/egg_models.git v0.2.1-0.20241205092551-36f699384da5
code.fnuoos.com/EggPlanet/egg_models.git v0.2.1-0.20241205122147-7bfed5d258c7
code.fnuoos.com/EggPlanet/egg_system_rules.git v0.0.4-0.20241205075006-9c0bf995c788 code.fnuoos.com/EggPlanet/egg_system_rules.git v0.0.4-0.20241205075006-9c0bf995c788
code.fnuoos.com/go_rely_warehouse/zyos_go_es.git v1.0.1-0.20241118083738-0f22da9ba0be code.fnuoos.com/go_rely_warehouse/zyos_go_es.git v1.0.1-0.20241118083738-0f22da9ba0be
code.fnuoos.com/go_rely_warehouse/zyos_go_mq.git v0.0.5 code.fnuoos.com/go_rely_warehouse/zyos_go_mq.git v0.0.5


Loading…
Cancel
Save