2024-07-30 11:05:41 +00:00
|
|
|
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
|
2024-09-09 08:17:30 +00:00
|
|
|
StatementKeyBenefactorGetByID
|
|
|
|
StatementKeyBenefactorGetByPhoneNumber
|
2024-07-30 11:05:41 +00:00
|
|
|
StatementKeyBenefactorCreate
|
|
|
|
StatementKeyKindBoxAdd
|
|
|
|
StatementKeyKindBoxAssignReceiverAgent
|
|
|
|
StatementKeyKindBoxEnumerate
|
|
|
|
StatementKeyKindBoxExistForBenefactor
|
|
|
|
StatementKeyKindBoxGetByID
|
|
|
|
StatementKeyKindBoxGetAwaitingReturnByAgent
|
|
|
|
StatementKeyKindBoxRegisterEmptyingRequest
|
|
|
|
StatementKeyKindBoxReturn
|
|
|
|
StatementKeyKindBoxReqAccept
|
|
|
|
StatementKeyKindBoxReqAdd
|
|
|
|
StatementKeyKindBoxReqAssignSenderAgent
|
|
|
|
StatementKeyKindBoxReqDeleteByID
|
|
|
|
StatementKeyKindBoxReqGetByID
|
|
|
|
StatementKeyKindBoxReqGetAwaitingDeliveryByAgent
|
|
|
|
StatementKeyKindBoxReqRollbackToPendingStatus
|
|
|
|
StatementKeyKindBoxReqReject
|
|
|
|
StatementKeyKindBoxReqUpdate
|
2024-07-30 20:30:24 +00:00
|
|
|
StatementKeyKindBoxUpdate
|
2024-07-30 11:05:41 +00:00
|
|
|
StatementKeyReferTimeGetByID
|
|
|
|
)
|