feat(app): update

This commit is contained in:
Yangtao
2025-11-19 14:24:13 +08:00
parent 1eac66d7fd
commit 0c34585649
329 changed files with 10760 additions and 281 deletions

View File

@ -0,0 +1,34 @@
package dto
// 消息订单对象
type MessageOrderDTO struct {
OrderId string
OrderNo string
UserAvatar string
UserType string // 1=买家 2=卖家
SkillName string
OrderCount string
UnitName string
BeginTime string
OrderClientStatus string
Title string
MsgCreateTime string
SkillMode string
SkillLevel string
SkillService string
}
// 互动消息对象
type MessageTimelineHuDongDTO struct {
TimelineId string
UserId string
UserAvatar string
UserNickName string
NameColor string
ContentText string
CreateTimeStr string
TimelineCoverImg string
TimelineType string // 1=图片 2=视频
Title string
}