fusenapi/model/gmodel/fs_quotation_remark_template_gen.go

19 lines
625 B
Go
Raw Normal View History

2023-06-16 11:04:13 +00:00
package gmodel
import (
"gorm.io/gorm"
)
// fs_quotation_remark_template 报价单备注模板
type FsQuotationRemarkTemplate struct {
Id int64 `gorm:"primary_key;default:'0';" json:"id"` // ID
Content *string `gorm:"default:'';" json:"content"` //
Status *int64 `gorm:"default:'1';" json:"status"` // 状态 1启用0停用
Ctime *int64 `gorm:"default:'0';" json:"ctime"` // 添加时间
}
type FsQuotationRemarkTemplateModel struct{ db *gorm.DB }
func NewFsQuotationRemarkTemplateModel(db *gorm.DB) *FsQuotationRemarkTemplateModel {
return &FsQuotationRemarkTemplateModel{db}
}