2023-06-19 01:53:35 +00:00
|
|
|
package gmodel
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"gorm.io/gorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
// fs_cloud_user_apply_back 该表废弃
|
|
|
|
type FsCloudUserApplyBack struct {
|
2023-06-19 10:27:31 +00:00
|
|
|
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
|
|
|
|
UserHash *string `gorm:"default:'';" json:"user_hash"` //
|
|
|
|
OrderDetailTemplateId *int64 `gorm:"default:0;" json:"order_detail_template_id"` // 详情modelID
|
|
|
|
Num *int64 `gorm:"default:0;" json:"num"` // 发货数量
|
|
|
|
AddressTo *string `gorm:"default:'';" json:"address_to"` // 收获地址
|
|
|
|
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
|
|
|
|
StorageFee *int64 `gorm:"default:0;" json:"storage_fee"` // 存储费用
|
|
|
|
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 是否已发货 是否处理 是否删除 是否推送
|
2023-06-16 11:04:13 +00:00
|
|
|
}
|
2023-07-20 02:13:18 +00:00
|
|
|
type FsCloudUserApplyBackModel struct {
|
|
|
|
db *gorm.DB
|
|
|
|
name string
|
|
|
|
}
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
|
|
func NewFsCloudUserApplyBackModel(db *gorm.DB) *FsCloudUserApplyBackModel {
|
2023-07-20 02:13:18 +00:00
|
|
|
return &FsCloudUserApplyBackModel{db: db, name: "fs_cloud_user_apply_back"}
|
2023-06-16 11:04:13 +00:00
|
|
|
}
|