PaymentCenter/app/models/productsmodel/products.go

50 lines
1.4 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package productsmodel
import (
"github.com/qit-team/snow-core/db"
"sync"
"time"
)
var (
once sync.Once
m *ProductsModel
)
// 实体
type Products struct {
Id int `xorm:"'Id' int(0)"`
Productname string `xorm:"'ProductName' varchar(255)"`
Producttype int `xorm:"'ProductType' int(0)"`
Packetrule int `xorm:"'PacketRule' TINYINT"`
Productkind int `xorm:"'ProductKind' TINYINT"`
Amount string `xorm:"'Amount' decimal(9,2)"`
Coupontype int `xorm:"'CouponType' TINYINT"`
Issuperposition int `xorm:"'IsSuperposition' TINYINT"`
Templateid int `xorm:"'TemplateId' int(0)"`
Status int `xorm:"'Status' TINYINT"`
Isneedbill int `xorm:"'IsNeedBill' TINYINT"`
Createtime time.Time `xorm:"'CreateTime' datetime"`
Supplierproductid int64 `xorm:"'SupplierProductId' bigint(0)"`
Supplierproductname string `xorm:"'SupplierProductName' varchar(255)"`
}
// 表名
func (m *Products) TableName() string {
return "Products"
}
// 私有化防止被外部new
type ProductsModel struct {
db.Model //组合基础Model集成基础Model的属性和方法
}
// 单例模式
func GetInstance() *ProductsModel {
once.Do(func() {
m = new(ProductsModel)
//m.DiName = "" //设置数据库实例连接默认db.SingletonMain
})
return m
}