audit_flow_log.go 2.1 KB
package models

import (
	"fmt"
	"time"

	"github.com/astaxie/beego/orm"
)

type AuditFlowLog struct {
	Id            int       `orm:"column(id);auto" description:"唯一编号"`
	ChanceId      int64     `orm:"column(chance_id)" description:"表chance.id 所属机会编号"`
	Content       string    `orm:"column(content);size(500)" description:"内容 json"`
	ApproveUserId int64     `orm:"column(approve_user_id)" description:"审核人用户编号"`
	CreateAt      time.Time `orm:"column(create_at);type(timestamp);auto_now" description:"创建时间"`
	Code          int       `orm:"column(code)" description:"消息编码"`
}

func (t *AuditFlowLog) TableName() string {
	return "audit_flow_log"
}

func init() {
	orm.RegisterModel(new(AuditFlowLog))
}

// AddAuditFlowLog insert a new AuditFlowLog into database and returns
// last inserted Id on success.
func AddAuditFlowLog(m *AuditFlowLog) (id int64, err error) {
	o := orm.NewOrm()
	id, err = o.Insert(m)
	return
}

// GetAuditFlowLogById retrieves AuditFlowLog by Id. Returns error if
// Id doesn't exist
func GetAuditFlowLogById(id int) (v *AuditFlowLog, err error) {
	o := orm.NewOrm()
	v = &AuditFlowLog{Id: id}
	if err = o.Read(v); err == nil {
		return v, nil
	}
	return nil, err
}

// UpdateAuditFlowLog updates AuditFlowLog by Id and returns error if
// the record to be updated doesn't exist
func UpdateAuditFlowLogById(m *AuditFlowLog) (err error) {
	o := orm.NewOrm()
	v := AuditFlowLog{Id: m.Id}
	// ascertain id exists in the database
	if err = o.Read(&v); err == nil {
		var num int64
		if num, err = o.Update(m); err == nil {
			fmt.Println("Number of records updated in database:", num)
		}
	}
	return
}

// DeleteAuditFlowLog deletes AuditFlowLog by Id and returns error if
// the record to be deleted doesn't exist
func DeleteAuditFlowLog(id int) (err error) {
	o := orm.NewOrm()
	v := AuditFlowLog{Id: id}
	// ascertain id exists in the database
	if err = o.Read(&v); err == nil {
		var num int64
		if num, err = o.Delete(&AuditFlowLog{Id: id}); err == nil {
			fmt.Println("Number of records deleted in database:", num)
		}
	}
	return
}