chance_type.go 2.5 KB
package models

import (
	"fmt"
	"github.com/astaxie/beego/orm"
	"time"
)

type ChanceType struct {
	Id        int       `orm:"column(id);auto" json:"id"`
	Name      string    `orm:"column(name);size(50)" description:"机会类型名称" json:"name"`
	Code      string    `orm:"column(code);size(50);null" description:"编码"`
	Icon      string    `orm:"column(icon);size(500);null" description:"图标地址" json:"icon"`
	CompanyId int       `orm:"column(company_id)" description:"表company.id 公司编号" json:"-"`
	SortNum   int       `orm:"column(sort_num);null" description:"序号 公司下的序号" json:"-"`
	CreateAt  time.Time `orm:"column(create_at);type(timestamp);null" description:"创建时间 " json:"-"`
	UpdateAt  time.Time `orm:"column(update_at);type(timestamp);null" description:"更新时间 " json:"-"`
}

func (t *ChanceType) TableName() string {
	return "chance_type"
}

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

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

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

// UpdateChanceType updates ChanceType by Id and returns error if
// the record to be updated doesn't exist
func UpdateChanceTypeById(m *ChanceType) (err error) {
	o := orm.NewOrm()
	v := ChanceType{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
}

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

//获取所有机会类型
func GetChanceTypeAll(companyId int64) (v []*ChanceType, err error) {
	o := orm.NewOrm()
	sql := "select * from chance_type where company_id=? order by sort_num"
	if _, err = o.Raw(sql, companyId).QueryRows(&v); err == nil {
		return
	}
	return
}