chance_department.go
2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package models
import (
"fmt"
"time"
"github.com/astaxie/beego/orm"
)
type ChanceDepartment struct {
Id int64 `orm:"column(id);pk" description:"唯一编号"`
ChanceId int64 `orm:"column(chance_id)" description:"表chance.id 机会编号"`
DepartmentId int64 `orm:"column(department_id)" description:"表department.id 部门编号"`
EnableStatus int8 `orm:"column(enable_status)" description:"有效状态 0:无效 1:有效 "`
CreateAt time.Time `orm:"column(create_at);type(timestamp);auto_now" description:"创建时间"`
DeleteAt time.Time `orm:"column(delete_at);type(timestamp)" description:"删除时间"`
}
var (
SqlDeleteChanceDepartment = "delete from chance_department where chance_id =? and enable_status=1"
)
func (t *ChanceDepartment) TableName() string {
return "chance_department"
}
func init() {
orm.RegisterModel(new(ChanceDepartment))
}
// AddChanceDepartment insert a new ChanceDepartment into database and returns
// last inserted Id on success.
func AddChanceDepartment(m *ChanceDepartment) (id int64, err error) {
o := orm.NewOrm()
id, err = o.Insert(m)
return
}
// GetChanceDepartmentById retrieves ChanceDepartment by Id. Returns error if
// Id doesn't exist
func GetChanceDepartmentById(id int64) (v *ChanceDepartment, err error) {
o := orm.NewOrm()
v = &ChanceDepartment{Id: id}
if err = o.Read(v); err == nil {
return v, nil
}
return nil, err
}
// UpdateChanceDepartment updates ChanceDepartment by Id and returns error if
// the record to be updated doesn't exist
func UpdateChanceDepartmentById(m *ChanceDepartment) (err error) {
o := orm.NewOrm()
v := ChanceDepartment{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
}
// DeleteChanceDepartment deletes ChanceDepartment by Id and returns error if
// the record to be deleted doesn't exist
func DeleteChanceDepartment(id int64) (err error) {
o := orm.NewOrm()
v := ChanceDepartment{Id: id}
// ascertain id exists in the database
if err = o.Read(&v); err == nil {
var num int64
if num, err = o.Delete(&ChanceDepartment{Id: id}); err == nil {
fmt.Println("Number of records deleted in database:", num)
}
}
return
}