forked from ebhomengo/niki
47 lines
1.4 KiB
Go
47 lines
1.4 KiB
Go
|
package mysql
|
||
|
|
||
|
type statementKey uint
|
||
|
|
||
|
const (
|
||
|
StatementKeyAddressCreateForBenefactor statementKey = iota + 1
|
||
|
StatementKeyAddressDeleteForBenefactor
|
||
|
StatementKeyAddressIsExistByID
|
||
|
StatementKeyAddressGetByID
|
||
|
StatementKeyAddressGetAllByBenefactorID
|
||
|
StatementKeyAddressUpdate
|
||
|
StatementKeyCityGetProvinceIDByID
|
||
|
StatementKeyCityIsExistByID
|
||
|
StatementKeyCityGetAll
|
||
|
StatementKeyProvinceIsExistByID
|
||
|
StatementKeyProvinceGetAll
|
||
|
StatementKeyAdminAccessControlGetPermissions
|
||
|
StatementKeyAdminAdd
|
||
|
StatementKeyAdminExistByEmail
|
||
|
StatementKeyAdminExistByPhoneNumber
|
||
|
StatementKeyAdminAgentExistByID
|
||
|
StatementKeyAdminGetByID
|
||
|
StatementKeyAdminGetByPhoneNumber
|
||
|
StatementKeyAdminAgentGetAll
|
||
|
StatementKeyBenefactorIsExistByID
|
||
|
StatementKeyBenefactorIsExistByPhoneNumber
|
||
|
StatementKeyBenefactorCreate
|
||
|
StatementKeyKindBoxAdd
|
||
|
StatementKeyKindBoxAssignReceiverAgent
|
||
|
StatementKeyKindBoxEnumerate
|
||
|
StatementKeyKindBoxExistForBenefactor
|
||
|
StatementKeyKindBoxGetByID
|
||
|
StatementKeyKindBoxGetAwaitingReturnByAgent
|
||
|
StatementKeyKindBoxRegisterEmptyingRequest
|
||
|
StatementKeyKindBoxReturn
|
||
|
StatementKeyKindBoxReqAccept
|
||
|
StatementKeyKindBoxReqAdd
|
||
|
StatementKeyKindBoxReqAssignSenderAgent
|
||
|
StatementKeyKindBoxReqDeleteByID
|
||
|
StatementKeyKindBoxReqGetByID
|
||
|
StatementKeyKindBoxReqGetAwaitingDeliveryByAgent
|
||
|
StatementKeyKindBoxReqRollbackToPendingStatus
|
||
|
StatementKeyKindBoxReqReject
|
||
|
StatementKeyKindBoxReqUpdate
|
||
|
StatementKeyReferTimeGetByID
|
||
|
)
|