123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- package model
- import (
- "fmt"
- "git.getensh.com/common/gopkgs/logger"
- "git.getensh.com/common/gopkgs/util"
- "go.uber.org/zap"
- "gorm.io/gorm"
- "time"
- )
- type THouseApproved struct {
- ID int64 `gorm:"column:id;PRIMARY_KEY" json:"id"`
- GardenId int64 `gorm:"column:garden_id" json:"garden_id"`
- Uid int64 `gorm:"column:uid" json:"uid"`
- ApprovedAt time.Time `gorm:"column:approved_at" json:"approved_at"`
- CreatedAt time.Time `gorm:"column:created_at" json:"created_at"`
- UpdatedAt time.Time `gorm:"column:updated_at" json:"updated_at"`
- UserType int32 `gorm:"column:user_type" json:"user_type"`
- HouseId int64 `gorm:"column:house_id" json:"house_id"`
- BuildingNumber string `gorm:"column:building_number" json:"building_number"`
- UnitNumber int64 `gorm:"column:unit_number" json:"unit_number"`
- HouseNumber string `gorm:"column:house_number" json:"house_number"`
- Appendix string `gorm:"column:appendix" json:"appendix"`
- Feedback string `gorm:"column:feedback" json:"feedback"`
- BuildingId int64 `gorm:"column:building_id" json:"building_id"`
- UnitId int64 `gorm:"column:unit_id" json:"unit_id"`
- Phone string `gorm:"column:phone" json:"phone"`
- Name string `gorm:"column:name" json:"name"`
- IdNumber string `gorm:"column:id_number" json:"id_number"`
- IdType int32 `gorm:"column:id_type" json:"id_type"`
- OpenId string `gorm:"column:open_id" json:"open_id"`
- PublicOpenId string `gorm:"column:public_open_id" json:"public_open_id"`
- }
- func (p *THouseApproved) TableName() string {
- return "t_house_approved"
- }
- func (p *THouseApproved) Find(db *gorm.DB, where map[string]interface{}) error {
- err := db.Table(p.TableName()).Where(where).Find(p).Error
- if err != nil {
- fields, _ := util.MarshalToString(where)
- logger.Error("mysql",
- zap.String("sql", "select from "+p.TableName()),
- zap.String("fields", fields),
- zap.String("error", err.Error()))
- }
- return err
- }
- func (p *THouseApproved) Last(db *gorm.DB) error {
- err := db.Table(p.TableName()).Last(p).Error
- if err != nil {
- logger.Error("mysql",
- zap.String("sql", "select last from "+p.TableName()),
- zap.String("fields", ""),
- zap.String("error", err.Error()))
- }
- return err
- }
- // Insert 插入一条记录
- func (p *THouseApproved) Insert(db *gorm.DB) error {
- err := db.Create(p).Error
- if err != nil {
- fields, _ := util.MarshalToString(*p)
- logger.Error("mysql",
- zap.String("sql", "insert into "+p.TableName()),
- zap.String("fields", fields),
- zap.String("error", err.Error()))
- }
- return err
- }
- func (p *THouseApproved) Delete(db *gorm.DB, filter map[string]interface{}) error {
- cond, val, err := whereBuild(filter)
- if err != nil {
- return err
- }
- return db.Table(p.TableName()).Where(cond, val...).Delete(p).Error
- }
- func (p *THouseApproved) Update(db *gorm.DB, where map[string]interface{}, values map[string]interface{}) error {
- cond, val, err := whereBuild(where)
- if err != nil {
- if err != nil {
- fields, _ := util.MarshalToString(values)
- logger.Error("mysql",
- zap.String("sql", "update "+p.TableName()),
- zap.String("fields", fields),
- zap.String("error", err.Error()))
- }
- return err
- }
- return db.Table(p.TableName()).Where(cond, val...).Updates(values).Error
- }
- func (p *THouseApproved) UpdateByModel(db *gorm.DB) error {
- err := db.Model(p).Updates(p).Error
- if err != nil {
- fields, _ := util.MarshalToString(*p)
- logger.Error("mysql",
- zap.String("sql", "update "+p.TableName()),
- zap.String("fields", fields),
- zap.String("error", err.Error()))
- }
- return err
- }
- func (p *THouseApproved) Count(db *gorm.DB, where map[string]interface{}, or map[string]interface{}) (int64, error) {
- cond, val, err := whereBuildAndOr(where, or)
- if err != nil {
- return 0, err
- }
- ret := int64(0)
- err = db.Table(p.TableName()).Where(cond, val...).Count(&ret).Error
- if err != nil {
- fields, _ := util.MarshalToString(where)
- logger.Error("mysql",
- zap.String("sql", "select count "+p.TableName()),
- zap.String("fields", fields),
- zap.String("error", err.Error()))
- }
- return ret, err
- }
- func (p *THouseApproved) List(db *gorm.DB, where map[string]interface{}, or map[string]interface{}, page int, pageSize int) (list []THouseApproved, err error) {
- if page >= 0 {
- return p.ListByJoin(db, where, or, page, pageSize)
- }
- cond, val, err := whereBuildAndOr(where, or)
- if err != nil {
- return list, err
- }
- result := db.Table(p.TableName()).Where(cond, val...).Find(&list)
- if result.Error != nil {
- wherefields, _ := util.MarshalToString(where)
- logger.Error("mysql",
- zap.String("sql", "select * from "+p.TableName()),
- zap.String("where", wherefields),
- zap.String("error", result.Error.Error()))
- }
- return list, result.Error
- }
- func (p *THouseApproved) ListByJoin(db *gorm.DB, where map[string]interface{}, or map[string]interface{}, page int, pageSize int) (list []THouseApproved, err error) {
- cond, val, err := whereBuildAndOr(where, or)
- if err != nil {
- return list, err
- }
- offset := (page - 1) * pageSize
- sql := fmt.Sprintf("select * from %s t1 join (select id from %s order by created_at limit %d offset %d) t2 on t1.id=t2.id order by t1.created_at desc", p.TableName(), p.TableName(), pageSize, offset)
- if cond != "" {
- sql = fmt.Sprintf("select * from %s t1 join (select id from %s where %s order by created_at desc limit %d offset %d ) t2 on t1.id=t2.id order by t1.created_at desc", p.TableName(), p.TableName(), cond, pageSize, offset)
- }
- if page == -1 || pageSize == -1 {
- sql = fmt.Sprintf("select * from %s t1 join (select id from %s ) t2 on t1.id=t2.id order by t1.created_at desc", p.TableName(), p.TableName())
- if cond != "" {
- sql = fmt.Sprintf("select * from %s t1 join (select id from %s where %s ) t2 on t1.id=t2.id order by t1.created_at desc", p.TableName(), p.TableName(), cond)
- }
- }
- result := db.Raw(sql, val...).Scan(&list)
- if result.Error != nil {
- wherefields, _ := util.MarshalToString(where)
- logger.Error("mysql",
- zap.String("sql", "select * from "+p.TableName()),
- zap.String("where", wherefields),
- zap.String("error", result.Error.Error()))
- }
- return list, result.Error
- }
- func (p *THouseApproved) ListGroup(db *gorm.DB, where map[string]interface{}, or map[string]interface{}, group string, page int, pageSize int) (list []THouseApproved, err error) {
- if page >= 0 {
- return p.ListByJoinGroup(db, where, or, group, page, pageSize)
- }
- cond, val, err := whereBuildAndOr(where, or)
- if err != nil {
- return list, err
- }
- result := db.Table(p.TableName()).Where(cond, val...).Group(group).Find(&list)
- if result.Error != nil {
- wherefields, _ := util.MarshalToString(where)
- logger.Error("mysql",
- zap.String("sql", "select * from "+p.TableName()),
- zap.String("where", wherefields),
- zap.String("error", result.Error.Error()))
- }
- return list, result.Error
- }
- func (p *THouseApproved) ListByJoinGroup(db *gorm.DB, where map[string]interface{}, or map[string]interface{}, group string, page int, pageSize int) (list []THouseApproved, err error) {
- cond, val, err := whereBuildAndOr(where, or)
- if err != nil {
- return list, err
- }
- offset := (page - 1) * pageSize
- sql := fmt.Sprintf("select * from %s t1 join (select id from %s group by %s limit %d offset %d) t2 on t1.id=t2.id", p.TableName(), p.TableName(), group, pageSize, offset)
- if cond != "" {
- sql = fmt.Sprintf("select * from %s t1 join (select id from %s where %s group by %s limit %d offset %d) t2 on t1.id=t2.id", p.TableName(), p.TableName(), cond, group, pageSize, offset)
- }
- result := db.Raw(sql, val...).Scan(&list)
- if result.Error != nil {
- wherefields, _ := util.MarshalToString(where)
- logger.Error("mysql",
- zap.String("sql", "select * from "+p.TableName()),
- zap.String("where", wherefields),
- zap.String("error", result.Error.Error()))
- }
- return list, result.Error
- }
- func (p *THouseApproved) CountGroup(db *gorm.DB, where map[string]interface{}, or map[string]interface{}, group string) (int64, error) {
- cond, val, err := whereBuildAndOr(where, or)
- if err != nil {
- return 0, err
- }
- sql := fmt.Sprintf("select count(*) as count from (select count(*) from %s group by %s) t1", p.TableName(), group)
- if len(cond) > 0 {
- sql = fmt.Sprintf("select count(*) as count from (select count(*) from %s where %s group by %s) t1", p.TableName(), cond, group)
- }
- type Result struct {
- Count int64
- }
- array := []Result{}
- err = db.Raw(sql, val...).Scan(&array).Error
- if err != nil {
- fields, _ := util.MarshalToString(where)
- logger.Error("mysql",
- zap.String("sql", "select count "+p.TableName()),
- zap.String("fields", fields),
- zap.String("error", err.Error()))
- return 0, err
- }
- if len(array) == 0 {
- return 0, nil
- }
- return array[0].Count, err
- }
|