Documentation ¶
Index ¶
- func GetTotalGethProcessJobTopicCount(dbConnPgx utils.PgxIface) (*int, error)
- func InsertGethProcessJobTopic(dbConnPgx utils.PgxIface, gethProcessJobTopic *GethProcessJobTopic) (int, error)
- func InsertGethProcessJobTopicList(dbConnPgx utils.PgxIface, gethProcessJobTopicList []GethProcessJobTopic) error
- func RemoveGethProcessJobTopic(dbConnPgx utils.PgxIface, gethProcessJobTopicID *int) error
- func UpdateGethProcessJobTopic(dbConnPgx utils.PgxIface, gethProcessJobTopic *GethProcessJobTopic) error
- type GethProcessJobTopic
- func GetGethProcessJobTopic(dbConnPgx utils.PgxIface, gethProcessJobTopicID *int) (*GethProcessJobTopic, error)
- func GetGethProcessJobTopicList(dbConnPgx utils.PgxIface) ([]GethProcessJobTopic, error)
- func GetGethProcessJobTopicListByPagination(dbConnPgx utils.PgxIface, _start, _end *int, _order, _sort string, ...) ([]GethProcessJobTopic, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func InsertGethProcessJobTopic ¶
func InsertGethProcessJobTopic(dbConnPgx utils.PgxIface, gethProcessJobTopic *GethProcessJobTopic) (int, error)
func InsertGethProcessJobTopicList ¶
func InsertGethProcessJobTopicList(dbConnPgx utils.PgxIface, gethProcessJobTopicList []GethProcessJobTopic) error
func UpdateGethProcessJobTopic ¶
func UpdateGethProcessJobTopic(dbConnPgx utils.PgxIface, gethProcessJobTopic *GethProcessJobTopic) error
Types ¶
type GethProcessJobTopic ¶
type GethProcessJobTopic struct { ID *int `json:"id" db:"id"` //1 GethProcessJobID *int `json:"gethProcessJobId" db:"geth_process_job_id"` //2 UUID string `json:"uuid" db:"uuid"` //3 Name string `json:"name" db:"name"` //4 AlternateName string `json:"alternateName" db:"alternate_name"` //5 Description string `json:"description" db:"description"` //6 StatusID *int `json:"statusId" db:"status_id"` //7 TopicStr string `json:"topicStr" db:"topic_str"` //8 CreatedBy string `json:"createdBy" db:"created_by"` //9 CreatedAt time.Time `json:"createdAt" db:"created_at"` //10 UpdatedBy string `json:"updatedBy" db:"updated_by"` //11 UpdatedAt time.Time `json:"updatedAt" db:"updated_at"` //12 }
func GetGethProcessJobTopic ¶
func GetGethProcessJobTopic(dbConnPgx utils.PgxIface, gethProcessJobTopicID *int) (*GethProcessJobTopic, error)
func GetGethProcessJobTopicList ¶
func GetGethProcessJobTopicList(dbConnPgx utils.PgxIface) ([]GethProcessJobTopic, error)
func GetGethProcessJobTopicListByPagination ¶
func GetGethProcessJobTopicListByPagination(dbConnPgx utils.PgxIface, _start, _end *int, _order, _sort string, _filters []string) ([]GethProcessJobTopic, error)
for refinedev
Click to show internal directories.
Click to hide internal directories.