Refactor: Lowercase struct names in config.go
This commit is contained in:
parent
84ae733098
commit
08b00235b6
|
@ -31,7 +31,7 @@ type (
|
||||||
}
|
}
|
||||||
|
|
||||||
FormsData struct {
|
FormsData struct {
|
||||||
FormBase
|
formBase
|
||||||
FormComponentValues []FormComponentValues `json:"form_component_values"` // 审批表单数据
|
FormComponentValues []FormComponentValues `json:"form_component_values"` // 审批表单数据
|
||||||
Finance *Finance `json:"finance"` // 财务模块调用
|
Finance *Finance `json:"finance"` // 财务模块调用
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,7 @@ type (
|
||||||
}
|
}
|
||||||
|
|
||||||
// 创建OA基础数据
|
// 创建OA基础数据
|
||||||
FormBase struct {
|
formBase struct {
|
||||||
OutTradeNo string `json:"out_trade_no"` // 流水号
|
OutTradeNo string `json:"out_trade_no"` // 流水号
|
||||||
OriginatorUserId string `json:"originator_user_id"` // 钉钉申请人id
|
OriginatorUserId string `json:"originator_user_id"` // 钉钉申请人id
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue