org_msg.go 2.14 KB
Newer Older
haoyanbin's avatar
haoyanbin committed
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 79 80 81 82 83 84
package dto

import (
	"go-admin/app/operate/models"
	"go-admin/common/dto"
	common "go-admin/common/models"
	"time"
)

type OrgMsgGetPageReq struct {
	dto.Pagination `search:"-"`
	OrgMsgOrder
}

type OrgMsgOrder struct {
	Id        int       `form:"idOrder"  search:"type:order;column:id;table:org_msg"`
	Code      string    `form:"codeOrder"  search:"type:order;column:code;table:org_msg"`
	Username  string    `form:"usernameOrder"  search:"type:order;column:username;table:org_msg"`
	CreateBy  string    `form:"createByOrder"  search:"type:order;column:create_by;table:org_msg"`
	UpdateBy  string    `form:"updateByOrder"  search:"type:order;column:update_by;table:org_msg"`
	CreatedAt time.Time `form:"createdAtOrder"  search:"type:order;column:created_at;table:org_msg"`
	UpdatedAt time.Time `form:"updatedAtOrder"  search:"type:order;column:updated_at;table:org_msg"`
	DeletedAt time.Time `form:"deletedAtOrder"  search:"type:order;column:deleted_at;table:org_msg"`
}

func (m *OrgMsgGetPageReq) GetNeedSearch() interface{} {
	return *m
}

type OrgMsgInsertReq struct {
	Id       int    `json:"-" comment:""` //
	Code     string `json:"code" comment:""`
	Username string `json:"username" comment:""`
	common.ControlBy
}

func (s *OrgMsgInsertReq) Generate(model *models.OrgMsg) {
	if s.Id == 0 {
		model.Model = common.Model{Id: s.Id}
	}
	model.Code = s.Code
	model.Username = s.Username
}

func (s *OrgMsgInsertReq) GetId() interface{} {
	return s.Id
}

type OrgMsgUpdateReq struct {
	Id       int    `uri:"id" comment:""` //
	Code     string `json:"code" comment:""`
	Username string `json:"username" comment:""`
	common.ControlBy
}

func (s *OrgMsgUpdateReq) Generate(model *models.OrgMsg) {
	if s.Id == 0 {
		model.Model = common.Model{Id: s.Id}
	}
	model.Code = s.Code
	model.Username = s.Username
}

func (s *OrgMsgUpdateReq) GetId() interface{} {
	return s.Id
}

// OrgMsgGetReq 功能获取请求参数
type OrgMsgGetReq struct {
	Id int `uri:"id"`
}

func (s *OrgMsgGetReq) GetId() interface{} {
	return s.Id
}

// OrgMsgDeleteReq 功能删除请求参数
type OrgMsgDeleteReq struct {
	Ids []int `json:"ids"`
}

func (s *OrgMsgDeleteReq) GetId() interface{} {
	return s.Ids
}