commonModule.directive('addExistUserModal', ['$log',
    function ($log) {
        'use strict';
        $log.debug('addExistUserModal.ctor()...');

        return {
            restrict: 'E',
            templateUrl: '/app/common/controls/add-exist-user-modal/add-exist-user-modal.html' + '?_=' + Math.random(),
            replace: true,
            controller: 'addExistUserModalController',
            scope:
            {
                operateType: '=',
                isUpdate: '=?',
                selectedUserList: '=?',
                selectedKeyItems: '=?',
                allowUncheck: '=?',
            },
            link: function (scope, element) {


            }
        };
    }
]);