You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package Model
|
|
|
|
//字典表
|
|
type T_Dictionary struct {
|
|
Dic_ID string
|
|
Dic_Sort string
|
|
Dic_Name string
|
|
Dic_ParentID string
|
|
Dic_Serial int
|
|
Dic_Describe string
|
|
}
|