feat(osi): 实现老年人自理能力查询(T-303)
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package contract
|
||||
|
||||
// ElderlySelfCareAssessment 是老年人生活自理能力评估查询的一条记录。
|
||||
// 查询侧只建模厂家文档明确列出的稳定字段,完整响应仍由 osi.Result.Raw 保留。
|
||||
type ElderlySelfCareAssessment struct {
|
||||
PHRID string `json:"phrId"`
|
||||
CheckID string `json:"checkId"`
|
||||
|
||||
Meal string `json:"jc"`
|
||||
MealLevel string `json:"jcdj"`
|
||||
MealScore string `json:"jcpf"`
|
||||
Grooming string `json:"sx"`
|
||||
GroomLevel string `json:"sxdj"`
|
||||
GroomScore string `json:"sxpf"`
|
||||
Dressing string `json:"cy"`
|
||||
DressLevel string `json:"cydj"`
|
||||
DressScore string `json:"cypf"`
|
||||
Toilet string `json:"rc"`
|
||||
ToiletLevel string `json:"rcdj"`
|
||||
ToiletScore string `json:"rcpf"`
|
||||
Activity string `json:"hd"`
|
||||
ActivityLevel string `json:"hddj"`
|
||||
ActivityScore string `json:"hdpf"`
|
||||
Overall string `json:"zp"`
|
||||
OverallLevel string `json:"zpdj"`
|
||||
TotalScore string `json:"zpfs"`
|
||||
|
||||
CreateUnit string `json:"createUnit"`
|
||||
CreateUser string `json:"createUser"`
|
||||
CreateDate string `json:"createDate"`
|
||||
InputDate string `json:"inputDate"`
|
||||
InputUser string `json:"inputUser"`
|
||||
InputUnit string `json:"inputUnit"`
|
||||
}
|
||||
Reference in New Issue
Block a user