Просмотр исходного кода

ChangeTypeEnumValue 类型改为 uint32

deng.yinping 1 месяц назад
Родитель
Сommit
55b86937e5
4 измененных файлов с 7 добавлено и 7 удалено
  1. 2 2
      docs/docs.go
  2. 2 2
      docs/swagger.json
  3. 2 2
      docs/swagger.yaml
  4. 1 1
      models/account.go

+ 2 - 2
docs/docs.go

@@ -68423,7 +68423,7 @@ const docTemplate = `{
                 },
                 "changetypeenumvalue": {
                     "description": "变更类型枚举项值(operateType 或 accountBusinessCode 对应值)",
-                    "type": "string"
+                    "type": "integer"
                 },
                 "createtime": {
                     "description": "发生时间",
@@ -68475,7 +68475,7 @@ const docTemplate = `{
                 },
                 "changetypeenumvalue": {
                     "description": "变更类型枚举项值(operateType 或 accountBusinessCode 对应值)",
-                    "type": "string"
+                    "type": "integer"
                 },
                 "createtime": {
                     "description": "发生时间",

+ 2 - 2
docs/swagger.json

@@ -68415,7 +68415,7 @@
                 },
                 "changetypeenumvalue": {
                     "description": "变更类型枚举项值(operateType 或 accountBusinessCode 对应值)",
-                    "type": "string"
+                    "type": "integer"
                 },
                 "createtime": {
                     "description": "发生时间",
@@ -68467,7 +68467,7 @@
                 },
                 "changetypeenumvalue": {
                     "description": "变更类型枚举项值(operateType 或 accountBusinessCode 对应值)",
-                    "type": "string"
+                    "type": "integer"
                 },
                 "createtime": {
                     "description": "发生时间",

+ 2 - 2
docs/swagger.yaml

@@ -32503,7 +32503,7 @@ definitions:
         type: string
       changetypeenumvalue:
         description: 变更类型枚举项值(operateType 或 accountBusinessCode 对应值)
-        type: string
+        type: integer
       createtime:
         description: 发生时间
         type: string
@@ -32541,7 +32541,7 @@ definitions:
         type: string
       changetypeenumvalue:
         description: 变更类型枚举项值(operateType 或 accountBusinessCode 对应值)
-        type: string
+        type: integer
       createtime:
         description: 发生时间
         type: string

+ 1 - 1
models/account.go

@@ -1588,5 +1588,5 @@ type TaaccountLogQueryEx struct {
 	// OPERATETYPENAMEVI  string `json:"operatetypenamevi"  xorm:"'OPERATETYPENAMEVI'"`   // 枚举项名称 - 越南语
 
 	ChangeTypeEnumCode  string `json:"changetypeenumcode" xorm:"'CHANGETYPEENUMCODE'"`   // 变更类型枚举项代码(operateType 或 accountBusinessCode)
-	ChangeTypeEnumValue string `json:"changetypeenumvalue" xorm:"'CHANGETYPEENUMVALUE'"` // 变更类型枚举项值(operateType 或 accountBusinessCode 对应值)
+	ChangeTypeEnumValue uint32 `json:"changetypeenumvalue" xorm:"'CHANGETYPEENUMVALUE'"` // 变更类型枚举项值(operateType 或 accountBusinessCode 对应值)
 }