- package entity
- type OrderSign struct {
- Id int `json:"id" db:"id"`
- OrderId string `json:"order_id" db:"order_id"`
- Status string `json:"status" db:"status"` //护士签到状态100:出门签到 200:到达客户签到 600:一般检查 300:离开签到 400:保存条码号 500:上传图片 700:修改信息 201:签到 601:其他检测(20221229 增加)
- SignTime string `json:"sign_time" db:"signtime"`
- Address string `json:"address" db:"address"`
- Picture string `json:"picture" db:"picture"`
- Remark string `json:"remark" db:"remark"`
- CreatedBy string `json:"create_by" db:"create_by"`
- }
|