param_org.go 696 字节
package allied_creation_user

//创建组织
type (
	ReqOrg struct {
	}

	DataOrg struct {
	}
)

//更新组织
type (
	ReqOrgUpdate struct {
		OrgId int64
	}

	DataOrgUpdate struct {
	}
)

//移除组织
type (
	ReqOrgRemove struct {
		OrgId int64
	}

	DataOrgRemove struct {
	}
)

//获取组织的子部门(通用部门列表使用)
type (
	ReqOrgGetSubDepartment struct {
		OrgId int64
	}

	DataOrgGetSubDepartment struct {
	}
)

//设置组织启用状态
type (
	ReqOrgEnable struct {
	}

	DataOrgEnable struct {
	}
)

//返回组织
type (
	ReqOrgGet struct {
		OrgId int64
	}

	DataOrgGet struct {
	}
)

//返回组织列表
type (
	ReqOrgSearch struct {
	}

	DataOrgSearch struct {
	}
)