所有uint64 -> int64

This commit is contained in:
eson 2023-06-16 19:51:41 +08:00
parent 2399c2deeb
commit de05b0a78b
117 changed files with 280 additions and 280 deletions

View File

@ -265,13 +265,13 @@ var typeForMysqlToGo = map[string]string{
"bigint": "*int64",
"year": "*int64",
"int unsigned": "*uint64",
"integer unsigned": "*uint64",
"tinyint unsigned": "*uint64",
"smallint unsigned": "*uint64",
"mediumint unsigned": "*uint64",
"bigint unsigned": "*uint64",
"bit": "*uint64",
"int unsigned": "*int64",
"integer unsigned": "*int64",
"tinyint unsigned": "*int64",
"smallint unsigned": "*int64",
"mediumint unsigned": "*int64",
"bigint unsigned": "*int64",
"bit": "*int64",
// 布尔类型
"bool": "*bool",

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -7,7 +7,7 @@ import (
// fs_address 用户地址表
type FsAddress struct {
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
UserId *uint64 `gorm:"index;default:0;" json:"user_id"` // 用户ID
UserId *int64 `gorm:"index;default:0;" json:"user_id"` // 用户ID
Name *string `gorm:"default:'';" json:"name"` // 地址名称
FirstName *string `gorm:"default:'';" json:"first_name"` // FirstName
LastName *string `gorm:"default:'';" json:"last_name"` // LastName

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -7,18 +7,18 @@ import (
// fs_cart 购物车
type FsCart struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // id
UserId *uint64 `gorm:"index;default:0;" json:"user_id"` //
ProductId *uint64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
TemplateId *uint64 `gorm:"index;default:0;" json:"template_id"` // 模板ID
PriceId *uint64 `gorm:"index;default:0;" json:"price_id"` // 价格ID
MaterialId *uint64 `gorm:"index;default:0;" json:"material_id"` // 材质ID
SizeId *uint64 `gorm:"index;default:0;" json:"size_id"` // 尺寸ID
BuyNum *uint64 `gorm:"default:0;" json:"buy_num"` // 购买数量
Id int64 `gorm:"primary_key;default:0;" json:"id"` // id
UserId *int64 `gorm:"index;default:0;" json:"user_id"` //
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
TemplateId *int64 `gorm:"index;default:0;" json:"template_id"` // 模板ID
PriceId *int64 `gorm:"index;default:0;" json:"price_id"` // 价格ID
MaterialId *int64 `gorm:"index;default:0;" json:"material_id"` // 材质ID
SizeId *int64 `gorm:"index;default:0;" json:"size_id"` // 尺寸ID
BuyNum *int64 `gorm:"default:0;" json:"buy_num"` // 购买数量
Cover *string `gorm:"default:'';" json:"cover"` // 截图
DesignId *uint64 `gorm:"index;default:0;" json:"design_id"` // 设计ID
Ctime *uint64 `gorm:"default:0;" json:"ctime"` //
Status *uint64 `gorm:"default:0;" json:"status"` // 状态位
DesignId *int64 `gorm:"index;default:0;" json:"design_id"` // 设计ID
Ctime *int64 `gorm:"default:0;" json:"ctime"` //
Status *int64 `gorm:"default:0;" json:"status"` // 状态位
OptionalId *int64 `gorm:"index;default:0;" json:"optional_id"` // 选项ID
IsCheck *int64 `gorm:"default:0;" json:"is_check"` // 是否选中状态0未选中1选中
TsTime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ts_time"` //

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_cloud_pick_up_detail 云仓提货单-详情
type FsCloudPickUpDetail struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // Id
Id int64 `gorm:"primary_key;default:0;" json:"id"` // Id
PickId *int64 `gorm:"index;default:0;" json:"pick_id"` // 提货单id
StockId *int64 `gorm:"default:0;" json:"stock_id"` // 用户云仓记录id
Num *int64 `gorm:"default:0;" json:"num"` // 提取数量

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_cloud_pick_up 云仓提货单
type FsCloudPickUp struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // Id
Id int64 `gorm:"primary_key;default:0;" json:"id"` // Id
UserId *int64 `gorm:"index;default:0;" json:"user_id"` // 用户id
TrackNum *string `gorm:"default:'';" json:"track_num"` // 运输号
AddressId *int64 `gorm:"default:0;" json:"address_id"` // 地址id

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_contact_service
type FsContactService struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Type *string `gorm:"default:'';" json:"type"` // 类型
RelationId *int64 `gorm:"index;default:0;" json:"relation_id"` // 关联id
UserId *int64 `gorm:"index;default:0;" json:"user_id"` // 用户id

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_deliver_every 发货详细表(已废弃)
type FsDeliverEvery struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
DeliverId *int64 `gorm:"index;default:0;" json:"deliver_id"` // 发货ID
OrderDetailTemplateSn *string `gorm:"index;default:'';" json:"order_detail_template_sn"` // 订单详情模板sn
Num *int64 `gorm:"default:0;" json:"num"` //

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_email_template 邮件模板表(暂未使用)
type FsEmailTemplate struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Type *int64 `gorm:"default:0;" json:"type"` // 模板类型
Name *string `gorm:"default:'';" json:"name"` // 模板名称
Title *string `gorm:"default:'';" json:"title"` // 模板标题

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_factory_deliver 工厂发货主表(废弃)
type FsFactoryDeliver struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Sn *string `gorm:"index;default:'';" json:"sn"` // 工厂发货编号sn
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 创建时间
DeliveryMethod *int64 `gorm:"default:0;" json:"delivery_method"` // 发货方式( 1:直接发货到收获地址 2云仓

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_factory_product 工厂生产表(废弃)
type FsFactoryProduct struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
FactoryId *int64 `gorm:"index;default:0;" json:"factory_id"` // 工厂id
OrderId *int64 `gorm:"index;default:0;" json:"order_id"` // 订单id
OrderDetailTemplateSn *string `gorm:"index;default:'';" json:"order_detail_template_sn"` // 产品模板sn

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_font 字体配置
type FsFont struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // id
Id int64 `gorm:"primary_key;default:0;" json:"id"` // id
Title *string `gorm:"default:'';" json:"title"` // 字体名字
LinuxFontname *string `gorm:"default:'';" json:"linux_fontname"` // linux对应字体名
FilePath *string `gorm:"default:'';" json:"file_path"` // 字体文件路径

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,9 +6,9 @@ import (
// fs_guest 游客表
type FsGuest struct {
GuestId uint64 `gorm:"primary_key;default:0;" json:"guest_id"` // ID
GuestId int64 `gorm:"primary_key;default:0;" json:"guest_id"` // ID
AuthKey *string `gorm:"default:'';" json:"auth_key"` // jwt token
Status *uint64 `gorm:"index;default:1;" json:"status"` // 1正常 0不正常
Status *int64 `gorm:"index;default:1;" json:"status"` // 1正常 0不正常
IsDel *int64 `gorm:"index;default:0;" json:"is_del"` // 是否删除 1删除
CreatedAt *int64 `gorm:"index;default:0;" json:"created_at"` // 添加时间
UpdatedAt *int64 `gorm:"default:0;" json:"updated_at"` // 更新时间

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,13 +6,13 @@ import (
// fs_log 日志表
type FsLog struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // ID
Id int64 `gorm:"primary_key;default:0;" json:"id"` // ID
Action *string `gorm:"default:'';" json:"action"` // 执行的动作
Table *string `gorm:"default:'';" json:"table"` // 表明
DataChanged *string `gorm:"default:'';" json:"data_changed"` // 修改后的数据
DataOld *string `gorm:"default:'';" json:"data_old"` // 变动的数据
Ctime *uint64 `gorm:"default:0;" json:"ctime"` // 添加时间
Uid *uint64 `gorm:"default:0;" json:"uid"` // 操作人ID
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
Uid *int64 `gorm:"default:0;" json:"uid"` // 操作人ID
Uname *string `gorm:"default:'';" json:"uname"` // 操作人名字
}
type FsLogModel struct{ db *gorm.DB }

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,16 +6,16 @@ import (
// fs_order_affiliate 订单附属表-流程控制时间等
type FsOrderAffiliate struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // id
OrderId *uint64 `gorm:"unique_key;default:0;" json:"order_id"` // 订单id
SureTime *uint64 `gorm:"default:0;" json:"sure_time"` // 确认时间
ProductTime *uint64 `gorm:"default:0;" json:"product_time"` // 生产时间
ProductEndtime *uint64 `gorm:"default:0;" json:"product_endtime"` // 生成完成时间
DeliverTime *uint64 `gorm:"default:0;" json:"deliver_time"` // 发货时间
UpsDeliverTime *uint64 `gorm:"default:0;" json:"ups_deliver_time"` // ups发货时间
UpsTime *uint64 `gorm:"default:0;" json:"ups_time"` // UPS提货时间
ArrivalTime *uint64 `gorm:"default:0;" json:"arrival_time"` // 到达云仓的时间
RecevieTime *uint64 `gorm:"default:0;" json:"recevie_time"` // 云仓收货时间
Id int64 `gorm:"primary_key;default:0;" json:"id"` // id
OrderId *int64 `gorm:"unique_key;default:0;" json:"order_id"` // 订单id
SureTime *int64 `gorm:"default:0;" json:"sure_time"` // 确认时间
ProductTime *int64 `gorm:"default:0;" json:"product_time"` // 生产时间
ProductEndtime *int64 `gorm:"default:0;" json:"product_endtime"` // 生成完成时间
DeliverTime *int64 `gorm:"default:0;" json:"deliver_time"` // 发货时间
UpsDeliverTime *int64 `gorm:"default:0;" json:"ups_deliver_time"` // ups发货时间
UpsTime *int64 `gorm:"default:0;" json:"ups_time"` // UPS提货时间
ArrivalTime *int64 `gorm:"default:0;" json:"arrival_time"` // 到达云仓的时间
RecevieTime *int64 `gorm:"default:0;" json:"recevie_time"` // 云仓收货时间
}
type FsOrderAffiliateModel struct{ db *gorm.DB }

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_product_copy1 产品表
type FsProductCopy1 struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Sn *string `gorm:"unique_key;default:'';" json:"sn"` // 商品编号 P98f087j
Type *int64 `gorm:"default:0;" json:"type"` // 分类ID
Title *string `gorm:"default:'';" json:"title"` // 名称
@ -23,8 +23,8 @@ type FsProductCopy1 struct {
MaterialIds *string `gorm:"default:'';" json:"material_ids"` // 材质 1,2,3
TagIds *string `gorm:"default:'';" json:"tag_ids"` //
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 是否上架 是否推荐 是否热销 是否环保 是否可加入微波炉 是否刪除
ProduceDays *uint64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *uint64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
ProduceDays *int64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *int64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
CoverImg *string `gorm:"default:'';" json:"cover_img"` // 背景图
IsShelf *int64 `gorm:"default:1;" json:"is_shelf"` // 是否上架
IsRecommend *int64 `gorm:"default:1;" json:"is_recommend"` // 是否推荐

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_product 产品表
type FsProduct struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Sn *string `gorm:"unique_key;default:'';" json:"sn"` // 商品编号 P98f087j
Type *int64 `gorm:"default:0;" json:"type"` // 分类ID
Title *string `gorm:"default:'';" json:"title"` // 名称
@ -23,8 +23,8 @@ type FsProduct struct {
MaterialIds *string `gorm:"default:'';" json:"material_ids"` // 材质 1,2,3
TagIds *string `gorm:"default:'';" json:"tag_ids"` //
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 弃用
ProduceDays *uint64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *uint64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
ProduceDays *int64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *int64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
CoverImg *string `gorm:"default:'';" json:"cover_img"` // 背景图
IsShelf *int64 `gorm:"default:1;" json:"is_shelf"` // 是否上架
IsRecommend *int64 `gorm:"default:1;" json:"is_recommend"` // 是否推荐

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -7,20 +7,20 @@ import (
// fs_product_model3d 产品模型表
type FsProductModel3d struct {
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
ProductId *uint64 `gorm:"index;default:0;" json:"product_id"` //
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` //
Tag *int64 `gorm:"default:1;" json:"tag"` // 类别1模型2配件3场景
Title *string `gorm:"default:'';" json:"title"` // 标题
Name *string `gorm:"default:'';" json:"name"` // 详情页展示名称
ModelInfo *string `gorm:"default:'';" json:"model_info"` // 模型详情
MaterialId *uint64 `gorm:"default:0;" json:"material_id"` // 材质ID
SizeId *uint64 `gorm:"default:0;" json:"size_id"` // 尺寸ID
Sort *uint64 `gorm:"default:0;" json:"sort"` // 排序
MaterialId *int64 `gorm:"default:0;" json:"material_id"` // 材质ID
SizeId *int64 `gorm:"default:0;" json:"size_id"` // 尺寸ID
Sort *int64 `gorm:"default:0;" json:"sort"` // 排序
Light *int64 `gorm:"default:0;" json:"light"` //
LightList *string `gorm:"default:'';" json:"light_list"` //
PartId *int64 `gorm:"default:0;" json:"part_id"` //
PartList *string `gorm:"default:'';" json:"part_list"` //
Status *uint64 `gorm:"default:0;" json:"status"` // 状态位 显示 删除
Ctime *uint64 `gorm:"default:0;" json:"ctime"` // 添加时间
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 显示 删除
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
OptionTemplate *int64 `gorm:"default:0;" json:"option_template"` //
Price *int64 `gorm:"default:0;" json:"price"` // 仅配件用,配件的价格, 单位:美分
Sku *string `gorm:"default:'';" json:"sku"` // sku

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_product_model3d_light 模型-灯光组表
type FsProductModel3dLight struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Name *string `gorm:"default:'';" json:"name"` // 灯光名称
Info *string `gorm:"default:'';" json:"info"` // 灯光数据json格式
Status *int64 `gorm:"default:1;" json:"status"` // 状态值1显示0删除

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_product_option 产品选项表(已废弃)
type FsProductOption struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Title *string `gorm:"default:'';" json:"title"` // 名称
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` // 产品id
Price *int64 `gorm:"default:0;" json:"price"` // 产品单价

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,12 +6,12 @@ import (
// fs_product_scene 产品场景表
type FsProductScene struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // ID
Id int64 `gorm:"primary_key;default:0;" json:"id"` // ID
Name *string `gorm:"default:'';" json:"name"` // 场景名
Info *string `gorm:"default:'';" json:"info"` // 场景详情
ModelIds *string `gorm:"default:'';" json:"model_ids"` // 该场景涉及的模型id
Status *int64 `gorm:"default:0;" json:"status"` // 状态1正常
Ctime *uint64 `gorm:"default:0;" json:"ctime"` // 添加时间
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
}
type FsProductSceneModel struct{ db *gorm.DB }

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,13 +6,13 @@ import (
// fs_product_size 产品尺寸表
type FsProductSize struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
ProductId *uint64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
Title *string `gorm:"default:'';" json:"title"` // 标题 10*10*20
Cover *string `gorm:"default:'';" json:"cover"` //
CoverImg *string `gorm:"default:'';" json:"cover_img"` //
Capacity *string `gorm:"default:'';" json:"capacity"` // 自己填的尺寸名称
Status *uint64 `gorm:"default:0;" json:"status"` // 状态位 显示 删除
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 显示 删除
Sort *int64 `gorm:"default:50;" json:"sort"` // 排序
Remark *string `gorm:"default:'';" json:"remark"` //
PartsCanDeleted *int64 `gorm:"default:1;" json:"parts_can_deleted"` // 配件是否可移除 1是0否

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_product_template_basemap 模板底图表
type FsProductTemplateBasemap struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // Id
Id int64 `gorm:"primary_key;default:0;" json:"id"` // Id
Name *string `gorm:"default:'';" json:"name"` // 底图名称
Url *string `gorm:"default:'';" json:"url"` // 底图地址
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_product_template_element 云渲染配置表
type FsProductTemplateElement struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // id
Id int64 `gorm:"primary_key;default:0;" json:"id"` // id
Title *string `gorm:"default:'';" json:"title"` // 产品模板名称
ProductTemplateId *int64 `gorm:"index;default:0;" json:"product_template_id"` // 产品模板id
Main *string `gorm:"default:'';" json:"main"` //

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,15 +6,15 @@ import (
// fs_product_template 产品模板表(已废弃)
type FsProductTemplate struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
ProductId *uint64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
Title *string `gorm:"default:'';" json:"title"` // 标题描述
Sort *uint64 `gorm:"default:0;" json:"sort"` // 排序
Ctime *uint64 `gorm:"default:0;" json:"ctime"` // 添加时间
Sort *int64 `gorm:"default:0;" json:"sort"` // 排序
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
ModelInfo *string `gorm:"default:'';" json:"model_info"` // 模型详情
MaterialId *uint64 `gorm:"default:0;" json:"material_id"` // 材质ID
SizeId *uint64 `gorm:"default:0;" json:"size_id"` // 尺寸ID
Status *uint64 `gorm:"default:0;" json:"status"` // 状态位 显示 删除
MaterialId *int64 `gorm:"default:0;" json:"material_id"` // 材质ID
SizeId *int64 `gorm:"default:0;" json:"size_id"` // 尺寸ID
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 显示 删除
LogoWidth *int64 `gorm:"default:0;" json:"logo_width"` // logo图最大宽度
LogoHeight *int64 `gorm:"default:0;" json:"logo_height"` // logo图最大高度
}

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,10 +6,10 @@ import (
// fs_product_template_tags 模板标签表
type FsProductTemplateTags struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // ID
Id int64 `gorm:"primary_key;default:0;" json:"id"` // ID
Title *string `gorm:"default:'';" json:"title"` // 标题
Status *uint64 `gorm:"default:0;" json:"status"` // 状态 1可用
CreateAt *uint64 `gorm:"default:0;" json:"create_at"` // 创建时间
Status *int64 `gorm:"default:0;" json:"status"` // 状态 1可用
CreateAt *int64 `gorm:"default:0;" json:"create_at"` // 创建时间
}
type FsProductTemplateTagsModel struct{ db *gorm.DB }

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,20 +6,20 @@ import (
// fs_product_template_v2 产品-模型-模板表
type FsProductTemplateV2 struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
ProductId *uint64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
ModelId *int64 `gorm:"default:0;" json:"model_id"` // 模型ID
Title *string `gorm:"default:'';" json:"title"` // 模板sku,预留字段
Name *string `gorm:"default:'';" json:"name"` // 名称
CoverImg *string `gorm:"default:'';" json:"cover_img"` //
TemplateInfo *string `gorm:"default:'';" json:"template_info"` // 模板详情
MaterialImg *string `gorm:"default:'';" json:"material_img"` //
Sort *uint64 `gorm:"default:0;" json:"sort"` // 排序
Sort *int64 `gorm:"default:0;" json:"sort"` // 排序
LogoWidth *int64 `gorm:"default:0;" json:"logo_width"` // logo图最大宽度
LogoHeight *int64 `gorm:"default:0;" json:"logo_height"` // logo图最大高度
IsPublic *int64 `gorm:"default:0;" json:"is_public"` // 是否可公用1:可以0不可以
Status *uint64 `gorm:"default:0;" json:"status"` // 状态1正常 2异常
Ctime *uint64 `gorm:"default:0;" json:"ctime"` // 添加时间
Status *int64 `gorm:"default:0;" json:"status"` // 状态1正常 2异常
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
Tag *string `gorm:"default:'';" json:"tag"` // 标签(用户自填)
IsDel *int64 `gorm:"default:0;" json:"is_del"` // 是否删除 1删除
}

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_product_v2_tmp 产品表
type FsProductV2Tmp struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Sn *string `gorm:"unique_key;default:'';" json:"sn"` // 商品编号 P98f087j
Type *int64 `gorm:"default:0;" json:"type"` // 分类ID
Title *string `gorm:"default:'';" json:"title"` // 名称
@ -22,8 +22,8 @@ type FsProductV2Tmp struct {
MaterialIds *string `gorm:"default:'';" json:"material_ids"` // 材质 1,2,3
TagIds *string `gorm:"default:'';" json:"tag_ids"` //
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 弃用
ProduceDays *uint64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *uint64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
ProduceDays *int64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *int64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
IsShelf *int64 `gorm:"default:1;" json:"is_shelf"` // 是否上架
IsRecommend *int64 `gorm:"default:1;" json:"is_recommend"` // 是否推荐
IsHot *int64 `gorm:"default:1;" json:"is_hot"` // 是否热销

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,14 +6,14 @@ import (
// fs_qrcode
type FsQrcode struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Title *string `gorm:"default:'';" json:"title"` // 名称
TagId *uint64 `gorm:"index;default:0;" json:"tag_id"` // 用户id
ScanTimes *uint64 `gorm:"default:0;" json:"scan_times"` // 扫码次数
CreateAt *uint64 `gorm:"default:0;" json:"create_at"` // 添加时间
TagId *int64 `gorm:"index;default:0;" json:"tag_id"` // 用户id
ScanTimes *int64 `gorm:"default:0;" json:"scan_times"` // 扫码次数
CreateAt *int64 `gorm:"default:0;" json:"create_at"` // 添加时间
Link *string `gorm:"index;default:'';" json:"link"` // 跳转链接
SvgPath *string `gorm:"default:'';" json:"svg_path"` // svg地址
Status *uint64 `gorm:"default:1;" json:"status"` // 状态1:正常 0下架
Status *int64 `gorm:"default:1;" json:"status"` // 状态1:正常 0下架
ProductId *int64 `gorm:"default:0;" json:"product_id"` // 0
}
type FsQrcodeModel struct{ db *gorm.DB }

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,11 +6,11 @@ import (
// fs_qrcode_log 二维码扫描日志
type FsQrcodeLog struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // ID
Id int64 `gorm:"primary_key;default:0;" json:"id"` // ID
Title *string `gorm:"default:'';" json:"title"` // 二维码名称
QrcodeId *uint64 `gorm:"default:0;" json:"qrcode_id"` // 二维码ID
TagId *uint64 `gorm:"default:0;" json:"tag_id"` // 分组ID
CreateAt *uint64 `gorm:"default:0;" json:"create_at"` // 创建时间
QrcodeId *int64 `gorm:"default:0;" json:"qrcode_id"` // 二维码ID
TagId *int64 `gorm:"default:0;" json:"tag_id"` // 分组ID
CreateAt *int64 `gorm:"default:0;" json:"create_at"` // 创建时间
Platform *string `gorm:"default:'';" json:"platform"` //
UserAgent *string `gorm:"default:'';" json:"user_agent"` //
}

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,7 +6,7 @@ import (
// fs_qrcode_set 二维码边框配置表
type FsQrcodeSet struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // id
Id int64 `gorm:"primary_key;default:0;" json:"id"` // id
Name *string `gorm:"default:'';" json:"name"` // 二维码组件名称
Size *int64 `gorm:"default:0;" json:"size"` // 二维码内容尺寸
IndexX *int64 `gorm:"default:0;" json:"index_x"` // x偏移量

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,14 +6,14 @@ import (
// fs_tags 产品分类表
type FsTags struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // ID
Id int64 `gorm:"primary_key;default:0;" json:"id"` // ID
Title *string `gorm:"default:'';" json:"title"` // 标题
Level *uint64 `gorm:"default:0;" json:"level"` // 层级、分类 1 => 二维码分类
ClickNum *uint64 `gorm:"default:0;" json:"click_num"` // 点击次数
Sort *uint64 `gorm:"default:0;" json:"sort"` // 排序(从大到小)
CreateAt *uint64 `gorm:"default:0;" json:"create_at"` // 创建时间
Level *int64 `gorm:"default:0;" json:"level"` // 层级、分类 1 => 二维码分类
ClickNum *int64 `gorm:"default:0;" json:"click_num"` // 点击次数
Sort *int64 `gorm:"default:0;" json:"sort"` // 排序(从大到小)
CreateAt *int64 `gorm:"default:0;" json:"create_at"` // 创建时间
Icon *string `gorm:"default:'';" json:"icon"` //
Status *uint64 `gorm:"default:1;" json:"status"` // 状态 1可用
Status *int64 `gorm:"default:1;" json:"status"` // 状态 1可用
Description *string `gorm:"default:'';" json:"description"` // 介绍 Seo
RecommendProduct *string `gorm:"default:'';" json:"recommend_product"` //
RecommendProductSort *string `gorm:"default:'';" json:"recommend_product_sort"` //

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -6,8 +6,8 @@ import (
// fs_tool_template 设计工具模板(废弃)
type FsToolTemplate struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // ID
Tid *uint64 `gorm:"default:0;" json:"tid"` // 类别ID
Id int64 `gorm:"primary_key;default:0;" json:"id"` // ID
Tid *int64 `gorm:"default:0;" json:"tid"` // 类别ID
Name *string `gorm:"unique_key;default:'';" json:"name"` // 名称
Model *string `gorm:"default:'';" json:"model"` // 模板
Material *string `gorm:"default:'';" json:"material"` // 材质图

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -20,7 +20,7 @@ type FsUser struct {
PasswordResetToken *string `gorm:"unique_key;default:'';" json:"password_reset_token"` //
Email *string `gorm:"unique_key;default:'';" json:"email"` // 邮箱
Type *int64 `gorm:"default:0;" json:"type"` // 1普通餐厅 2连锁餐厅
Status *uint64 `gorm:"default:1;" json:"status"` // 1正常 0不正常
Status *int64 `gorm:"default:1;" json:"status"` // 1正常 0不正常
IsDel *int64 `gorm:"default:0;" json:"is_del"` // 是否删除 1删除
CreatedAt *int64 `gorm:"default:0;" json:"created_at"` // 添加时间
UpdatedAt *int64 `gorm:"default:0;" json:"updated_at"` // 更新时间
@ -30,7 +30,7 @@ type FsUser struct {
IsPhoneAdvertisement *int64 `gorm:"default:0;" json:"is_phone_advertisement"` // 是否接收短信广告
IsOpenRender *int64 `gorm:"default:0;" json:"is_open_render"` // 是否打开个性化渲染1开启0关闭
IsThousandFace *int64 `gorm:"default:0;" json:"is_thousand_face"` // 是否已经存在千人千面1存在0不存在
IsLowRendering *uint64 `gorm:"default:0;" json:"is_low_rendering"` //
IsLowRendering *int64 `gorm:"default:0;" json:"is_low_rendering"` //
IsRemoveBg *int64 `gorm:"default:1;" json:"is_remove_bg"` // 用户上传logo是否去除背景
}
type FsUserModel struct{ db *gorm.DB }

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"
@ -16,7 +16,7 @@ type FsUserStock struct {
DesignId *int64 `gorm:"default:0;" json:"design_id"` // 设计id
EachBoxNum *int64 `gorm:"default:0;" json:"each_box_num"` // 每箱个数
EachBoxWeight *float64 `gorm:"default:0.00;" json:"each_box_weight"` // 每箱重量
TransNum *uint64 `gorm:"default:0;" json:"trans_num"` // 在途数量
TransNum *int64 `gorm:"default:0;" json:"trans_num"` // 在途数量
ProductId *int64 `gorm:"default:0;" json:"product_id"` // 产品id
IsEmail *int64 `gorm:"default:0;" json:"is_email"` // 是否发送邮件
Utime *int64 `gorm:"default:0;" json:"utime"` // 更新时间

View File

@ -1,4 +1,4 @@
package gmodel
package model
import (
"gorm.io/gorm"

View File

@ -7,7 +7,7 @@ import (
// fs_address 用户地址表
type FsAddress struct {
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
UserId *uint64 `gorm:"index;default:0;" json:"user_id"` // 用户ID
UserId *int64 `gorm:"index;default:0;" json:"user_id"` // 用户ID
Name *string `gorm:"default:'';" json:"name"` // 地址名称
FirstName *string `gorm:"default:'';" json:"first_name"` // FirstName
LastName *string `gorm:"default:'';" json:"last_name"` // LastName

View File

@ -7,18 +7,18 @@ import (
// fs_cart 购物车
type FsCart struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // id
UserId *uint64 `gorm:"index;default:0;" json:"user_id"` //
ProductId *uint64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
TemplateId *uint64 `gorm:"index;default:0;" json:"template_id"` // 模板ID
PriceId *uint64 `gorm:"index;default:0;" json:"price_id"` // 价格ID
MaterialId *uint64 `gorm:"index;default:0;" json:"material_id"` // 材质ID
SizeId *uint64 `gorm:"index;default:0;" json:"size_id"` // 尺寸ID
BuyNum *uint64 `gorm:"default:0;" json:"buy_num"` // 购买数量
Id int64 `gorm:"primary_key;default:0;" json:"id"` // id
UserId *int64 `gorm:"index;default:0;" json:"user_id"` //
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
TemplateId *int64 `gorm:"index;default:0;" json:"template_id"` // 模板ID
PriceId *int64 `gorm:"index;default:0;" json:"price_id"` // 价格ID
MaterialId *int64 `gorm:"index;default:0;" json:"material_id"` // 材质ID
SizeId *int64 `gorm:"index;default:0;" json:"size_id"` // 尺寸ID
BuyNum *int64 `gorm:"default:0;" json:"buy_num"` // 购买数量
Cover *string `gorm:"default:'';" json:"cover"` // 截图
DesignId *uint64 `gorm:"index;default:0;" json:"design_id"` // 设计ID
Ctime *uint64 `gorm:"default:0;" json:"ctime"` //
Status *uint64 `gorm:"default:0;" json:"status"` // 状态位
DesignId *int64 `gorm:"index;default:0;" json:"design_id"` // 设计ID
Ctime *int64 `gorm:"default:0;" json:"ctime"` //
Status *int64 `gorm:"default:0;" json:"status"` // 状态位
OptionalId *int64 `gorm:"index;default:0;" json:"optional_id"` // 选项ID
IsCheck *int64 `gorm:"default:0;" json:"is_check"` // 是否选中状态0未选中1选中
TsTime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ts_time"` //

View File

@ -6,7 +6,7 @@ import (
// fs_cloud_pick_up_detail 云仓提货单-详情
type FsCloudPickUpDetail struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // Id
Id int64 `gorm:"primary_key;default:0;" json:"id"` // Id
PickId *int64 `gorm:"index;default:0;" json:"pick_id"` // 提货单id
StockId *int64 `gorm:"default:0;" json:"stock_id"` // 用户云仓记录id
Num *int64 `gorm:"default:0;" json:"num"` // 提取数量

View File

@ -6,7 +6,7 @@ import (
// fs_cloud_pick_up 云仓提货单
type FsCloudPickUp struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // Id
Id int64 `gorm:"primary_key;default:0;" json:"id"` // Id
UserId *int64 `gorm:"index;default:0;" json:"user_id"` // 用户id
TrackNum *string `gorm:"default:'';" json:"track_num"` // 运输号
AddressId *int64 `gorm:"default:0;" json:"address_id"` // 地址id

View File

@ -6,7 +6,7 @@ import (
// fs_contact_service
type FsContactService struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Type *string `gorm:"default:'';" json:"type"` // 类型
RelationId *int64 `gorm:"index;default:0;" json:"relation_id"` // 关联id
UserId *int64 `gorm:"index;default:0;" json:"user_id"` // 用户id

View File

@ -6,7 +6,7 @@ import (
// fs_deliver_every 发货详细表(已废弃)
type FsDeliverEvery struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
DeliverId *int64 `gorm:"index;default:0;" json:"deliver_id"` // 发货ID
OrderDetailTemplateSn *string `gorm:"index;default:'';" json:"order_detail_template_sn"` // 订单详情模板sn
Num *int64 `gorm:"default:0;" json:"num"` //

View File

@ -6,7 +6,7 @@ import (
// fs_email_template 邮件模板表(暂未使用)
type FsEmailTemplate struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Type *int64 `gorm:"default:0;" json:"type"` // 模板类型
Name *string `gorm:"default:'';" json:"name"` // 模板名称
Title *string `gorm:"default:'';" json:"title"` // 模板标题

View File

@ -6,7 +6,7 @@ import (
// fs_factory_deliver 工厂发货主表(废弃)
type FsFactoryDeliver struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Sn *string `gorm:"index;default:'';" json:"sn"` // 工厂发货编号sn
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 创建时间
DeliveryMethod *int64 `gorm:"default:0;" json:"delivery_method"` // 发货方式( 1:直接发货到收获地址 2云仓

View File

@ -6,7 +6,7 @@ import (
// fs_factory_product 工厂生产表(废弃)
type FsFactoryProduct struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
FactoryId *int64 `gorm:"index;default:0;" json:"factory_id"` // 工厂id
OrderId *int64 `gorm:"index;default:0;" json:"order_id"` // 订单id
OrderDetailTemplateSn *string `gorm:"index;default:'';" json:"order_detail_template_sn"` // 产品模板sn

View File

@ -6,7 +6,7 @@ import (
// fs_font 字体配置
type FsFont struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // id
Id int64 `gorm:"primary_key;default:0;" json:"id"` // id
Title *string `gorm:"default:'';" json:"title"` // 字体名字
LinuxFontname *string `gorm:"default:'';" json:"linux_fontname"` // linux对应字体名
FilePath *string `gorm:"default:'';" json:"file_path"` // 字体文件路径

View File

@ -6,9 +6,9 @@ import (
// fs_guest 游客表
type FsGuest struct {
GuestId uint64 `gorm:"primary_key;default:0;" json:"guest_id"` // ID
GuestId int64 `gorm:"primary_key;default:0;" json:"guest_id"` // ID
AuthKey *string `gorm:"default:'';" json:"auth_key"` // jwt token
Status *uint64 `gorm:"index;default:1;" json:"status"` // 1正常 0不正常
Status *int64 `gorm:"index;default:1;" json:"status"` // 1正常 0不正常
IsDel *int64 `gorm:"index;default:0;" json:"is_del"` // 是否删除 1删除
CreatedAt *int64 `gorm:"index;default:0;" json:"created_at"` // 添加时间
UpdatedAt *int64 `gorm:"default:0;" json:"updated_at"` // 更新时间

View File

@ -6,13 +6,13 @@ import (
// fs_log 日志表
type FsLog struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // ID
Id int64 `gorm:"primary_key;default:0;" json:"id"` // ID
Action *string `gorm:"default:'';" json:"action"` // 执行的动作
Table *string `gorm:"default:'';" json:"table"` // 表明
DataChanged *string `gorm:"default:'';" json:"data_changed"` // 修改后的数据
DataOld *string `gorm:"default:'';" json:"data_old"` // 变动的数据
Ctime *uint64 `gorm:"default:0;" json:"ctime"` // 添加时间
Uid *uint64 `gorm:"default:0;" json:"uid"` // 操作人ID
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
Uid *int64 `gorm:"default:0;" json:"uid"` // 操作人ID
Uname *string `gorm:"default:'';" json:"uname"` // 操作人名字
}
type FsLogModel struct{ db *gorm.DB }

View File

@ -6,16 +6,16 @@ import (
// fs_order_affiliate 订单附属表-流程控制时间等
type FsOrderAffiliate struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` // id
OrderId *uint64 `gorm:"unique_key;default:0;" json:"order_id"` // 订单id
SureTime *uint64 `gorm:"default:0;" json:"sure_time"` // 确认时间
ProductTime *uint64 `gorm:"default:0;" json:"product_time"` // 生产时间
ProductEndtime *uint64 `gorm:"default:0;" json:"product_endtime"` // 生成完成时间
DeliverTime *uint64 `gorm:"default:0;" json:"deliver_time"` // 发货时间
UpsDeliverTime *uint64 `gorm:"default:0;" json:"ups_deliver_time"` // ups发货时间
UpsTime *uint64 `gorm:"default:0;" json:"ups_time"` // UPS提货时间
ArrivalTime *uint64 `gorm:"default:0;" json:"arrival_time"` // 到达云仓的时间
RecevieTime *uint64 `gorm:"default:0;" json:"recevie_time"` // 云仓收货时间
Id int64 `gorm:"primary_key;default:0;" json:"id"` // id
OrderId *int64 `gorm:"unique_key;default:0;" json:"order_id"` // 订单id
SureTime *int64 `gorm:"default:0;" json:"sure_time"` // 确认时间
ProductTime *int64 `gorm:"default:0;" json:"product_time"` // 生产时间
ProductEndtime *int64 `gorm:"default:0;" json:"product_endtime"` // 生成完成时间
DeliverTime *int64 `gorm:"default:0;" json:"deliver_time"` // 发货时间
UpsDeliverTime *int64 `gorm:"default:0;" json:"ups_deliver_time"` // ups发货时间
UpsTime *int64 `gorm:"default:0;" json:"ups_time"` // UPS提货时间
ArrivalTime *int64 `gorm:"default:0;" json:"arrival_time"` // 到达云仓的时间
RecevieTime *int64 `gorm:"default:0;" json:"recevie_time"` // 云仓收货时间
}
type FsOrderAffiliateModel struct{ db *gorm.DB }

View File

@ -6,7 +6,7 @@ import (
// fs_product_copy1 产品表
type FsProductCopy1 struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Sn *string `gorm:"unique_key;default:'';" json:"sn"` // 商品编号 P98f087j
Type *int64 `gorm:"default:0;" json:"type"` // 分类ID
Title *string `gorm:"default:'';" json:"title"` // 名称
@ -23,8 +23,8 @@ type FsProductCopy1 struct {
MaterialIds *string `gorm:"default:'';" json:"material_ids"` // 材质 1,2,3
TagIds *string `gorm:"default:'';" json:"tag_ids"` //
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 是否上架 是否推荐 是否热销 是否环保 是否可加入微波炉 是否刪除
ProduceDays *uint64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *uint64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
ProduceDays *int64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *int64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
CoverImg *string `gorm:"default:'';" json:"cover_img"` // 背景图
IsShelf *int64 `gorm:"default:1;" json:"is_shelf"` // 是否上架
IsRecommend *int64 `gorm:"default:1;" json:"is_recommend"` // 是否推荐

View File

@ -6,7 +6,7 @@ import (
// fs_product 产品表
type FsProduct struct {
Id uint64 `gorm:"primary_key;default:0;" json:"id"` //
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
Sn *string `gorm:"unique_key;default:'';" json:"sn"` // 商品编号 P98f087j
Type *int64 `gorm:"default:0;" json:"type"` // 分类ID
Title *string `gorm:"default:'';" json:"title"` // 名称
@ -23,8 +23,8 @@ type FsProduct struct {
MaterialIds *string `gorm:"default:'';" json:"material_ids"` // 材质 1,2,3
TagIds *string `gorm:"default:'';" json:"tag_ids"` //
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 弃用
ProduceDays *uint64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *uint64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
ProduceDays *int64 `gorm:"default:0;" json:"produce_days"` // 生产天数
DeliveryDays *int64 `gorm:"default:0;" json:"delivery_days"` // 运送天数
CoverImg *string `gorm:"default:'';" json:"cover_img"` // 背景图
IsShelf *int64 `gorm:"default:1;" json:"is_shelf"` // 是否上架
IsRecommend *int64 `gorm:"default:1;" json:"is_recommend"` // 是否推荐

View File

@ -7,20 +7,20 @@ import (
// fs_product_model3d 产品模型表
type FsProductModel3d struct {
Id int64 `gorm:"primary_key;default:0;" json:"id"` //
ProductId *uint64 `gorm:"index;default:0;" json:"product_id"` //
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` //
Tag *int64 `gorm:"default:1;" json:"tag"` // 类别1模型2配件3场景
Title *string `gorm:"default:'';" json:"title"` // 标题
Name *string `gorm:"default:'';" json:"name"` // 详情页展示名称
ModelInfo *string `gorm:"default:'';" json:"model_info"` // 模型详情
MaterialId *uint64 `gorm:"default:0;" json:"material_id"` // 材质ID
SizeId *uint64 `gorm:"default:0;" json:"size_id"` // 尺寸ID
Sort *uint64 `gorm:"default:0;" json:"sort"` // 排序
MaterialId *int64 `gorm:"default:0;" json:"material_id"` // 材质ID
SizeId *int64 `gorm:"default:0;" json:"size_id"` // 尺寸ID
Sort *int64 `gorm:"default:0;" json:"sort"` // 排序
Light *int64 `gorm:"default:0;" json:"light"` //
LightList *string `gorm:"default:'';" json:"light_list"` //
PartId *int64 `gorm:"default:0;" json:"part_id"` //
PartList *string `gorm:"default:'';" json:"part_list"` //
Status *uint64 `gorm:"default:0;" json:"status"` // 状态位 显示 删除
Ctime *uint64 `gorm:"default:0;" json:"ctime"` // 添加时间
Status *int64 `gorm:"default:0;" json:"status"` // 状态位 显示 删除
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
OptionTemplate *int64 `gorm:"default:0;" json:"option_template"` //
Price *int64 `gorm:"default:0;" json:"price"` // 仅配件用,配件的价格, 单位:美分
Sku *string `gorm:"default:'';" json:"sku"` // sku

Some files were not shown because too many files have changed in this diff Show More