From 657c5e42e5111ffa04dc65f38141b694f88bf0d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=92=8B=E5=90=89=E5=85=86?= <303176530@qq.com> Date: Thu, 25 Nov 2021 16:23:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=97=E5=85=B8=E6=95=B0=E6=8D=AE=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/source/system/dictionary_detail.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/source/system/dictionary_detail.go b/server/source/system/dictionary_detail.go index fdb83ed3..f0563d80 100644 --- a/server/source/system/dictionary_detail.go +++ b/server/source/system/dictionary_detail.go @@ -19,6 +19,8 @@ func (d *dictionaryDetail) Initialize() error { status := new(bool) *status = true entities := []system.SysDictionaryDetail{ + {Label: "男", Value: 1, Status: status, Sort: 1, SysDictionaryID: 1}, + {Label: "女", Value: 2, Status: status, Sort: 2, SysDictionaryID: 1}, {Label: "smallint", Value: 1, Status: status, Sort: 1, SysDictionaryID: 2}, {Label: "mediumint", Value: 2, Status: status, Sort: 2, SysDictionaryID: 2}, {Label: "int", Value: 3, Status: status, Sort: 3, SysDictionaryID: 2},