|
|
@@ -113,15 +113,15 @@ func (Tablecolumnconfig) TableName() string {
|
|
|
|
|
|
// Enumdicitem 枚举项字典表
|
|
|
type Enumdicitem struct {
|
|
|
- Autoid int64 `json:"autoid" xorm:"'AUTOID'" binding:"required"` // 自增ID
|
|
|
- Enumdicid int32 `json:"enumdicid" xorm:"'ENUMDICID'" binding:"required"` // 所属枚举ID
|
|
|
+ Autoid int64 `json:"-" xorm:"'AUTOID'" binding:"required"` // 自增ID
|
|
|
+ Enumdicid int32 `json:"-" xorm:"'ENUMDICID'" binding:"required"` // 所属枚举ID
|
|
|
Enumdiccode string `json:"enumdiccode" xorm:"'ENUMDICCODE'" binding:"required"` // 所属枚举代码
|
|
|
Enumdicname string `json:"enumdicname" xorm:"'ENUMDICNAME'"` // 枚举项名称
|
|
|
Enumitemname int64 `json:"enumitemname" xorm:"'ENUMITEMNAME'" binding:"required"` // 枚举项值
|
|
|
Enumitemstatus int32 `json:"enumitemstatus" xorm:"'ENUMITEMSTATUS'"` // 枚举项状态 - 1.启用 2.不启用
|
|
|
- Bankmappedvalue string `json:"bankmappedvalue" xorm:"'BANKMAPPEDVALUE'"` // 银行服务对应值
|
|
|
- Remark string `json:"remark" xorm:"'REMARK'"` // 备注
|
|
|
- Enumitemvalue string `json:"enumitemvalue" xorm:"'ENUMITEMVALUE'"` // 通用值 - [币种通用简写]
|
|
|
+ Bankmappedvalue string `json:"-" xorm:"'BANKMAPPEDVALUE'"` // 银行服务对应值
|
|
|
+ Remark string `json:"-" xorm:"'REMARK'"` // 备注
|
|
|
+ Enumitemvalue string `json:"-" xorm:"'ENUMITEMVALUE'"` // 通用值 - [币种通用简写]
|
|
|
Param1 string `json:"param1" xorm:"'PARAM1'"` // 参数1[币种:币种小数位]
|
|
|
Param2 string `json:"param2" xorm:"'PARAM2'"` // 参数1[币种:币种显示单位]
|
|
|
EnumdicnameEn string `json:"enumdicnameen" xorm:"'ENUMDICNAMEEN'"` // 枚举项名称 - 英文
|
|
|
@@ -776,11 +776,11 @@ func GetServerTime2() (*string, error) {
|
|
|
// QueryErrorInfosRsp 获取数据库错误信息模型
|
|
|
type QueryErrorInfosRsp struct {
|
|
|
Errorid int64 `json:"errorid" xorm:"'ERRORID'" binding:"required"` // 异常ID
|
|
|
- Errorcode string `json:"errorcode" xorm:"'ERRORCODE'"` // 异常代码
|
|
|
- Modulecode string `json:"modulecode" xorm:"'MODULECODE'"` // 所属模块
|
|
|
- Operatecode string `json:"operatecode" xorm:"'OPERATECODE'"` // 所属操作
|
|
|
+ Errorcode string `json:"-" xorm:"'ERRORCODE'"` // 异常代码
|
|
|
+ Modulecode string `json:"-" xorm:"'MODULECODE'"` // 所属模块
|
|
|
+ Operatecode string `json:"-" xorm:"'OPERATECODE'"` // 所属操作
|
|
|
Description string `json:"description" xorm:"'DESCRIPTION'"` // 异常描述
|
|
|
- Rownumber string `json:"rownumber" xorm:"ROWNUMBER"` // 行号
|
|
|
+ Rownumber string `json:"-" xorm:"ROWNUMBER"` // 行号
|
|
|
DescriptionEn string `json:"descriptionen" xorm:"'DESCRIPTIONEN'"` // 异常描述 - 英文
|
|
|
DescriptionZh_Tw string `json:"descriptionzh_tw" xorm:"'DESCRIPTIONZH_TW'"` // 异常描述 - 繁体
|
|
|
DescriptionTh string `json:"descriptionth" xorm:"'DESCRIPTIONTH'"` // 异常描述 - 泰文
|