101 lines
4.5 KiB
Go
Executable File
101 lines
4.5 KiB
Go
Executable File
// Code generated by goctl. DO NOT EDIT.
|
||
|
||
package model
|
||
|
||
import (
|
||
"context"
|
||
"database/sql"
|
||
"fmt"
|
||
"strings"
|
||
|
||
"github.com/zeromicro/go-zero/core/stores/builder"
|
||
"github.com/zeromicro/go-zero/core/stores/sqlc"
|
||
"github.com/zeromicro/go-zero/core/stores/sqlx"
|
||
"github.com/zeromicro/go-zero/core/stringx"
|
||
)
|
||
|
||
var (
|
||
fsProductModel3dFieldNames = builder.RawFieldNames(&FsProductModel3d{})
|
||
fsProductModel3dRows = strings.Join(fsProductModel3dFieldNames, ",")
|
||
fsProductModel3dRowsExpectAutoSet = strings.Join(stringx.Remove(fsProductModel3dFieldNames, "`id`", "`create_at`", "`create_time`", "`created_at`", "`update_at`", "`update_time`", "`updated_at`"), ",")
|
||
fsProductModel3dRowsWithPlaceHolder = strings.Join(stringx.Remove(fsProductModel3dFieldNames, "`id`", "`create_at`", "`create_time`", "`created_at`", "`update_at`", "`update_time`", "`updated_at`"), "=?,") + "=?"
|
||
)
|
||
|
||
type (
|
||
fsProductModel3dModel interface {
|
||
Insert(ctx context.Context, data *FsProductModel3d) (sql.Result, error)
|
||
FindOne(ctx context.Context, id int64) (*FsProductModel3d, error)
|
||
Update(ctx context.Context, data *FsProductModel3d) error
|
||
Delete(ctx context.Context, id int64) error
|
||
}
|
||
|
||
defaultFsProductModel3dModel struct {
|
||
conn sqlx.SqlConn
|
||
table string
|
||
}
|
||
|
||
FsProductModel3d struct {
|
||
Id int64 `db:"id"`
|
||
ProductId sql.NullInt64 `db:"product_id"` // 产品ID
|
||
Tag int64 `db:"tag"` // 类别(1:模型,2:配件,3:场景)
|
||
Title string `db:"title"` // 标题
|
||
Name string `db:"name"` // 详情页展示名称
|
||
ModelInfo string `db:"model_info"` // 模型详情
|
||
MaterialId int64 `db:"material_id"` // 材质ID
|
||
SizeId int64 `db:"size_id"` // 尺寸ID
|
||
Sort int64 `db:"sort"` // 排序
|
||
Light sql.NullInt64 `db:"light"` // 灯光组
|
||
LightList sql.NullString `db:"light_list"` // 灯光备选项
|
||
PartId sql.NullInt64 `db:"part_id"` // 配件选项id(配件就是模型的id)
|
||
PartList sql.NullString `db:"part_list"` // 配件备选项
|
||
Status int64 `db:"status"` // 状态位 显示 删除
|
||
Ctime int64 `db:"ctime"` // 添加时间
|
||
OptionTemplate sql.NullInt64 `db:"option_template"` // 配件绑定的公共模板
|
||
Price int64 `db:"price"` // 仅配件用,配件的价格, 单位:美分
|
||
Sku string `db:"sku"` // sku
|
||
}
|
||
)
|
||
|
||
func newFsProductModel3dModel(conn sqlx.SqlConn) *defaultFsProductModel3dModel {
|
||
return &defaultFsProductModel3dModel{
|
||
conn: conn,
|
||
table: "`fs_product_model3d`",
|
||
}
|
||
}
|
||
|
||
func (m *defaultFsProductModel3dModel) Delete(ctx context.Context, id int64) error {
|
||
query := fmt.Sprintf("delete from %s where `id` = ?", m.table)
|
||
_, err := m.conn.ExecCtx(ctx, query, id)
|
||
return err
|
||
}
|
||
|
||
func (m *defaultFsProductModel3dModel) FindOne(ctx context.Context, id int64) (*FsProductModel3d, error) {
|
||
query := fmt.Sprintf("select %s from %s where `id` = ? limit 1", fsProductModel3dRows, m.table)
|
||
var resp FsProductModel3d
|
||
err := m.conn.QueryRowCtx(ctx, &resp, query, id)
|
||
switch err {
|
||
case nil:
|
||
return &resp, nil
|
||
case sqlc.ErrNotFound:
|
||
return nil, ErrNotFound
|
||
default:
|
||
return nil, err
|
||
}
|
||
}
|
||
|
||
func (m *defaultFsProductModel3dModel) Insert(ctx context.Context, data *FsProductModel3d) (sql.Result, error) {
|
||
query := fmt.Sprintf("insert into %s (%s) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", m.table, fsProductModel3dRowsExpectAutoSet)
|
||
ret, err := m.conn.ExecCtx(ctx, query, data.ProductId, data.Tag, data.Title, data.Name, data.ModelInfo, data.MaterialId, data.SizeId, data.Sort, data.Light, data.LightList, data.PartId, data.PartList, data.Status, data.Ctime, data.OptionTemplate, data.Price, data.Sku)
|
||
return ret, err
|
||
}
|
||
|
||
func (m *defaultFsProductModel3dModel) Update(ctx context.Context, data *FsProductModel3d) error {
|
||
query := fmt.Sprintf("update %s set %s where `id` = ?", m.table, fsProductModel3dRowsWithPlaceHolder)
|
||
_, err := m.conn.ExecCtx(ctx, query, data.ProductId, data.Tag, data.Title, data.Name, data.ModelInfo, data.MaterialId, data.SizeId, data.Sort, data.Light, data.LightList, data.PartId, data.PartList, data.Status, data.Ctime, data.OptionTemplate, data.Price, data.Sku, data.Id)
|
||
return err
|
||
}
|
||
|
||
func (m *defaultFsProductModel3dModel) tableName() string {
|
||
return m.table
|
||
}
|