使用Irvine32.lib

时间:2015-05-28 03:00:57

标签: assembly masm irvine32

所以我需要完成的是验证输入的整数是否在可接受的值(1-4)内,并且不提示用户它是不正确的,而是等到有效输入。 (如果,此程序不允许,重复或While语句)我这样做是通过使用:

mov edx,OFFSET prompt           ;Prompt user for integer entry
    call WriteString
    Redo:                       ;Validate the integer
        call ReadInt
        cmp al,1                ;Wait for valid entry if integer is less than 1
        jl Redo
        cmp al,4                ;Wait for valid entry if integer is greater than 4
        jg Redo
        ret

但是,我的教授提到输入应该预先检查而不显示。这可能吗?由于您将输入输入,它们如何消失?我不知道如何做到这一点或从哪里开始。我花了很长时间才弄清楚如何让程序等待有效输入,现在我发现我做错了。有人可以给我一些指示吗?或者朝着正确的方向轻推?

以下是锁定模拟的完整代码。

INCLUDE Irvine32.inc


.data
prompt BYTE 'Please press a button (1,2,3, or 4):', 0       
report1 BYTE 'The lock 2s count = 0', 0         
report2 BYTE 'The lock 2s count = 1', 0
report3 BYTE 'The lock 2s count = 2', 0
report4 BYTE 'The lock 2s count = 3', 0
report5 BYTE 'The lock is open!', 0
.code

main PROC
; Main program control procedure.
; Calls: DisplayMessage, GetButtonPress, Crlf, 
;       WriteString

Start:                          ;Beginning of the lock simulation
    call DisplayMessage         ;Display the starting lock 2s count
    call Crlf                   ;New line
    call GetButtonPress         ;Get user button choice
    cmp al, 1                   ;If user choice is 1 jump to State0
    je State0 
    cmp al, 2                   ;If user choice is 2 jump to State1
    je State1
    cmp al, 3                   ;If user choice is 3 jump to State0
    je State0
    cmp al, 4                   ;If user choice is 4 jump to State2
    je State2

State0:                         ;When the lock 2s count equals 0
    mov al, 0                   ;Make the AL register equal to 0 for message display
    call DisplayMessage         ;Display lock 2s count
    call Crlf                   ;New line
    call GetButtonPress         ;Get user button choice
    cmp al, 1                   ;If user choice is 1 jump to State0
    je State0
    cmp al, 2                   ;If user choice is 2 jump to State1
    je State1
    cmp al, 3                   ;If user choice is 3 jump to State0
    je State0
    cmp al, 4                   ;If user choice is 4 jump to State2
    je State2

State1:                         ;When the lock 2s count equals 1
    mov al,1                    ;Make the AL register equal to 1 for message display
    call DisplayMessage         ;Display lock 2s count
    call Crlf                   ;New line
    call GetButtonPress         ;Get user button choice
    cmp al, 1                   ;If user choice is 1 jump to State0
    je State0 
    cmp al, 2                   ;If user choice is 2 jump to State2
    je State2
    cmp al, 3                   ;If user choice is 3 jump to State0
    je State0
    cmp al, 4                   ;If user choice is 4 jump to State3
    je State3

State2:                         ;When the lock 2s count equals 2
    mov al,2                    ;Make the AL register equal to 2 for message display
    call DisplayMessage         ;Display lock 2s count
    call Crlf                   ;New line
    call GetButtonPress         ;Get user button choice
    cmp al, 1                   ;If user choice is 1 jump to State1
    je State1 
    cmp al, 2                   ;If user choice is 2 jump to State3
    je State3
    cmp al, 3                   ;If user choice is 3 jump to Terminal
    je Terminal
    cmp al, 4                   ;If user choice is 4 jump to State3
    je State3

State3:                         ;When the lock 2s count equals 3
    mov al,3                    ;Make the AL register equal to 3 for message display
    call DisplayMessage         ;Display lock 2s count
    call Crlf                   ;New line
    call GetButtonPress         ;Get user button choice
    cmp al, 1                   ;If user choice is 1 jump to State2
    je State2 
    cmp al, 2                   ;If user choice is 2 jump to State3
    je State3
    cmp al, 3                   ;If user choice is 3 jump to State0
    je State0
    cmp al, 4                   ;If user choice is 4 jump to State3
    je State3

Terminal:
    mov edx, OFFSET report5     ;Declare the lock as open
    call WriteString


    exit                        ;exit to operating system
main ENDP

;-------------------------------------------------------------
GetButtonPress PROC
;
; Prompts the user for button entry 
; Receives: None 
; Returns: An integer value to the AL register
; Calls: WriteString, ReadInt
;----------------------------------------------------------------
    mov edx,OFFSET prompt       ;Prompt user for integer entry
    call WriteString
    Redo:                       ;Validate the integer
        call ReadInt
        cmp al,1                ;Wait for valid entry if integer is less than 1
        jl Redo
        cmp al,4                ;Wait for valid entry if integer is greater than 4
        jg Redo
        ret
GetButtonPress ENDP

;-----------------------------------------------------------------
DisplayMessage PROC
;
; Displays the appropriate message concerning the lock 2s count
; Receives: The integer value in the AL register
; Returns: Nothing
; Calls: WriteString
;------------------------------------------------------------------
    cmp al,0                    ;Compare 1-3 to the AL register to display the proper message
    je Message1
    cmp al, 1
    je Message2
    cmp al, 2
    je Message3
    cmp al, 3
    je Message4

    Message1:                   ;If AL = 0 then the lock 2s count is 0
        mov edx,OFFSET report1
        call WriteString
        jmp Quit

    Message2:                   ;If AL = 1 then the lock 2s count is 1
        mov edx,OFFSET report2
        call WriteString
        jmp Quit

    Message3:                   ;If AL = 2 then the lock 2s count is 2
        mov edx,OFFSET report3
        call WriteString
        jmp Quit

    Message4:                   ;If AL = 3 then the lock 2s count is 3
        mov edx,OFFSET report4
        call WriteString

    Quit:                       ;Return to main PROC
        ret
DisplayMessage ENDP

END main

1 个答案:

答案 0 :(得分:1)

我想通了 - 我实际上需要将数字作为字符读取并使用作者的ReadChar程序,因为它不会回显到屏幕。

我将此部分更改为:

{
"modelList": [],
"iTotalRecords": 60,
"iTotalDisplayRecords": 60,
"aaData": [
    {
        "address": "Admin Master Access",
        "organizationName": "ParkAvenue",
        "organizationId": 475,
        "modelList": [],
        "shopOwnerName": "Administrator",
        "shopOwnerEmail": "femina@gmail.com",
        "shopOwnerPhone": "044265612",
        "shopOwnerLogin": "acumenadmin",
        "shopOwnerPassword": "admin",
        "shopOwnerUserId": -1,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "organizationName": "Femina1",
        "organizationId": 486,
        "modelList": [],
        "shopOwnerName": "FeminaUser",
        "shopOwnerEmail": "femina1@gmail.com",
        "shopOwnerPhone": "1231231",
        "shopOwnerLogin": "femina1",
        "shopOwnerPassword": "femina1",
        "shopOwnerUserId": 1150,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "organizationName": "Acumen",
        "organizationId": 5,
        "modelList": [],
        "shopOwnerName": "administrator",
        "shopOwnerLogin": "acumenadmin",
        "shopOwnerPassword": "femina1",
        "shopOwnerUserId": 1200,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Femina2",
        "organizationId": 496,
        "modelList": [],
        "shopOwnerName": "FeminaUser3",
        "shopOwnerEmail": "femina2@gmail.com",
        "shopOwnerPhone": "04423456",
        "shopOwnerLogin": "femina3",
        "shopOwnerPassword": "femina3",
        "shopOwnerUserId": 1250,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Admin Master Access",
        "organizationName": "Femina2",
        "organizationId": 496,
        "modelList": [],
        "shopOwnerName": "Administrator",
        "shopOwnerEmail": "femina2@gmail.com",
        "shopOwnerPhone": "04423456",
        "shopOwnerLogin": "acumenadmin",
        "shopOwnerPassword": "admin",
        "shopOwnerUserId": -1,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "ParkAvenue",
        "organizationId": 475,
        "modelList": [],
        "shopOwnerName": "femina4",
        "shopOwnerEmail": "femina@gmail.com",
        "shopOwnerPhone": "044265612",
        "shopOwnerLogin": "femina4",
        "shopOwnerPassword": "femina4",
        "shopOwnerUserId": 1350,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Porsche",
        "organizationId": 466,
        "modelList": [],
        "shopOwnerName": "porsche5050",
        "shopOwnerEmail": "porsche@gmail.com",
        "shopOwnerPhone": "221212",
        "shopOwnerLogin": "porsche",
        "shopOwnerPassword": "tested",
        "shopOwnerUserId": 1050,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Samson",
        "organizationId": 546,
        "modelList": [],
        "shopOwnerName": "Femina-Pradeep",
        "shopOwnerEmail": "samsung@gmail.com",
        "shopOwnerPhone": "123465",
        "shopOwnerLogin": "feminaPradeep",
        "shopOwnerPassword": "feminaPradeep",
        "shopOwnerUserId": 1450,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Samson Lighting",
        "organizationId": 554,
        "modelList": [],
        "shopOwnerName": "Xavier Pradep",
        "shopOwnerEmail": "samson@gmail.com",
        "shopOwnerPhone": "12345657",
        "shopOwnerLogin": "acumenlb4d",
        "shopOwnerPassword": "admin1",
        "shopOwnerUserId": 1500,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Rani Mahal",
        "organizationId": 564,
        "modelList": [],
        "shopOwnerName": "Rani",
        "shopOwnerEmail": "ranimagal@gmail.com",
        "shopOwnerPhone": "123456789",
        "shopOwnerLogin": "acumenrani",
        "shopOwnerPassword": "admin1",
        "shopOwnerUserId": 1550,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal Egmore",
        "organizationId": 574,
        "modelList": [],
        "shopOwnerName": "Kusal Egm",
        "shopOwnerEmail": "kusalegmore@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "acumenkusalegm",
        "shopOwnerPassword": "admin1",
        "shopOwnerUserId": 1551,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal ECR",
        "organizationId": 584,
        "modelList": [],
        "shopOwnerName": "Kusal ECR",
        "shopOwnerEmail": "kusalecr@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "acumenkusalecr",
        "shopOwnerPassword": "admin1",
        "shopOwnerUserId": 1552,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Groupm",
        "organizationId": 693,
        "modelList": [],
        "shopOwnerName": "Groupm",
        "shopOwnerEmail": "subbu@highpowerv.com",
        "shopOwnerPhone": "04445542000",
        "shopOwnerLogin": "groupm",
        "shopOwnerPassword": "groupm",
        "shopOwnerUserId": 1600,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Acumen",
        "organizationId": 5,
        "modelList": [],
        "shopOwnerName": "MuruganV",
        "shopOwnerLogin": "murugan",
        "shopOwnerPassword": "murugan",
        "shopOwnerUserId": 1650,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Acumen",
        "organizationId": 5,
        "modelList": [],
        "shopOwnerName": "MuruganvvV",
        "shopOwnerLogin": "muruganvv",
        "shopOwnerPassword": "murugan",
        "shopOwnerUserId": 1652,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "pvr",
        "organizationId": 705,
        "modelList": [],
        "shopOwnerName": "PVR",
        "shopOwnerEmail": "pvr@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "acumenpvr",
        "shopOwnerPassword": "acumenpvr",
        "shopOwnerUserId": 1700,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Testing",
        "organizationId": 722,
        "modelList": [],
        "shopOwnerName": "TESTing Demo",
        "shopOwnerEmail": "testing@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "acumenTESTing",
        "shopOwnerPassword": "acumenTESTing",
        "shopOwnerUserId": 1701,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal Shop Ecr",
        "organizationId": 771,
        "modelList": [],
        "shopOwnerName": "Kusal Shop ECR",
        "shopOwnerEmail": "kusalflora@gmail.com",
        "shopOwnerPhone": "04424490200",
        "shopOwnerLogin": "kusalecr",
        "shopOwnerPassword": "kusalecr",
        "shopOwnerUserId": 1705,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Acumen",
        "organizationId": 5,
        "modelList": [],
        "shopOwnerName": "MuruganTEST",
        "shopOwnerLogin": "muruganTEST",
        "shopOwnerPassword": "murugan",
        "shopOwnerUserId": 1706,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Admin Master Access",
        "organizationName": "Hyundai",
        "organizationId": 921,
        "modelList": [],
        "shopOwnerName": "Administrator",
        "shopOwnerEmail": "pavan.acumen@gmail.com",
        "shopOwnerPhone": "1231231231",
        "shopOwnerLogin": "acumenadmin",
        "shopOwnerPassword": "admin",
        "shopOwnerUserId": -1,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Admin Master Access",
        "organizationName": "Business Testing",
        "organizationId": 929,
        "modelList": [],
        "shopOwnerName": "Administrator",
        "shopOwnerEmail": "pavan@acumentec.com",
        "shopOwnerPhone": "123456",
        "shopOwnerLogin": "acumenadmin",
        "shopOwnerPassword": "admin",
        "shopOwnerUserId": -1,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Ananda Bhavan",
        "organizationId": 781,
        "modelList": [],
        "shopOwnerName": "Ananda Bhavan",
        "shopOwnerEmail": "bhavan@gmail.com",
        "shopOwnerPhone": "04442333333",
        "shopOwnerLogin": "anandabhavan",
        "shopOwnerPassword": "anandabhavan",
        "shopOwnerUserId": 1707,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal Shop Egmore",
        "organizationId": 791,
        "modelList": [],
        "shopOwnerName": "kusal Shop Egmore",
        "shopOwnerEmail": "kusalflora@gmail.com",
        "shopOwnerPhone": "04428193372",
        "shopOwnerLogin": "kusalegmore",
        "shopOwnerPassword": "kusalegmore",
        "shopOwnerUserId": 1708,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Rani Marriage Hall",
        "organizationId": 801,
        "modelList": [],
        "shopOwnerName": "Rani Mahal",
        "shopOwnerEmail": "ranihall@gmail.com",
        "shopOwnerPhone": "0442599090",
        "shopOwnerLogin": "ranimahal",
        "shopOwnerPassword": "ranimahal",
        "shopOwnerUserId": 1709,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Samson Lighting Pvt Ltd",
        "organizationId": 811,
        "modelList": [],
        "shopOwnerName": "Samson",
        "shopOwnerEmail": "sales@samsonlighting.com",
        "shopOwnerPhone": "04426671125",
        "shopOwnerLogin": "samson",
        "shopOwnerPassword": "samson",
        "shopOwnerUserId": 1710,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "google tech",
        "organizationId": 825,
        "modelList": [],
        "shopOwnerName": "Google",
        "shopOwnerEmail": "pradeepj.acumen@gmail.com",
        "shopOwnerPhone": "123456789",
        "shopOwnerLogin": "googleuser",
        "shopOwnerPassword": "googleuser",
        "shopOwnerUserId": 1750,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "google tech hyd",
        "organizationId": 833,
        "modelList": [],
        "shopOwnerName": "Google",
        "shopOwnerEmail": "pradeep@acumentec.com",
        "shopOwnerPhone": "125474545",
        "shopOwnerLogin": "googleuser",
        "shopOwnerPassword": "googleuser",
        "shopOwnerUserId": 1750,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Propel Fitness",
        "organizationId": 908,
        "modelList": [],
        "shopOwnerName": "acumenpropel",
        "shopOwnerEmail": "etst@tert.com",
        "shopOwnerPhone": "3234324",
        "shopOwnerLogin": "acumenpropel",
        "shopOwnerPassword": "admin1",
        "shopOwnerUserId": 1800,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Propel Fitness",
        "organizationId": 855,
        "modelList": [],
        "shopOwnerName": "acumenpropel",
        "shopOwnerEmail": "test@test.com",
        "shopOwnerPhone": "04428261222",
        "shopOwnerLogin": "acumenpropel",
        "shopOwnerPassword": "admin1",
        "shopOwnerUserId": 1800,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Hyundai",
        "organizationId": 921,
        "modelList": [],
        "shopOwnerName": "Pavan",
        "shopOwnerEmail": "pavan.acumen@gmail.com",
        "shopOwnerPhone": "1231231231",
        "shopOwnerLogin": "hyundai",
        "shopOwnerPassword": "hyundai",
        "shopOwnerUserId": 1850,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Acumen",
        "organizationId": 5,
        "modelList": [],
        "shopOwnerName": "asdfghjkl",
        "shopOwnerLogin": "pavan",
        "shopOwnerPassword": "pavan",
        "shopOwnerUserId": 1903,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Tyre Store",
        "organizationId": 983,
        "modelList": [],
        "shopOwnerName": "Pavan",
        "shopOwnerEmail": "pavan.acumen@gmail.com",
        "shopOwnerPhone": "8754566199",
        "shopOwnerLogin": "tyrestorechennai",
        "shopOwnerPassword": "tyrestorechennai",
        "shopOwnerUserId": 1950,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Mokaba",
        "organizationId": 1002,
        "modelList": [],
        "shopOwnerName": "acumenmokaba",
        "shopOwnerEmail": "pradeep@acumentec.com",
        "shopOwnerPhone": "123456",
        "shopOwnerLogin": "acumenmokaba",
        "shopOwnerPassword": "acumenmokaba",
        "shopOwnerUserId": 2000,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Mokaba Chennai",
        "organizationId": 1018,
        "modelList": [],
        "shopOwnerName": "acumenmokabauser",
        "shopOwnerEmail": "sdfgs@sfg.com",
        "shopOwnerPhone": "2343422",
        "shopOwnerLogin": "acumenmokabauser",
        "shopOwnerPassword": "acumenmokabauser",
        "shopOwnerUserId": 2050,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Mani Shop",
        "organizationId": 2500,
        "modelList": [],
        "shopOwnerName": "Manikandan",
        "shopOwnerEmail": "mani@gmail.com",
        "shopOwnerPhone": "044630630",
        "shopOwnerLogin": "mani",
        "shopOwnerPassword": "mani",
        "shopOwnerUserId": 2150,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "kusal vadapalani",
        "organizationId": 2549,
        "modelList": [],
        "shopOwnerName": "Kusal ECR",
        "shopOwnerEmail": "test@test.com",
        "shopOwnerPhone": "56546546",
        "shopOwnerLogin": "acumenkusalecr",
        "shopOwnerPassword": "admin1",
        "shopOwnerUserId": 1552,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "kusal vadapalani",
        "organizationId": 2549,
        "modelList": [],
        "shopOwnerName": "asdfghjkl",
        "shopOwnerEmail": "test@test.com",
        "shopOwnerPhone": "56546546",
        "shopOwnerLogin": "pavan",
        "shopOwnerPassword": "pavan",
        "shopOwnerUserId": 1903,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal ECR",
        "organizationId": 584,
        "modelList": [],
        "shopOwnerName": "pradeep",
        "shopOwnerEmail": "kusalecr@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "pradeeptest",
        "shopOwnerPassword": "pradeeptest",
        "shopOwnerUserId": 2200,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal ECR",
        "organizationId": 584,
        "modelList": [],
        "shopOwnerName": "pradeeptest",
        "shopOwnerEmail": "kusalecr@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "pradeeptest1",
        "shopOwnerPassword": "pradeeptest1",
        "shopOwnerUserId": 2201,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal ECR",
        "organizationId": 584,
        "modelList": [],
        "shopOwnerName": "pradeeptest2",
        "shopOwnerEmail": "kusalecr@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "pradeeptest2",
        "shopOwnerPassword": "pradeeptest2",
        "shopOwnerUserId": 2250,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal ECR",
        "organizationId": 584,
        "modelList": [],
        "shopOwnerName": "sdfgfds",
        "shopOwnerEmail": "kusalecr@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "sdfgfds",
        "shopOwnerPassword": "sdfgfds",
        "shopOwnerUserId": 2300,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal ECR",
        "organizationId": 584,
        "modelList": [],
        "shopOwnerName": "pradeepj",
        "shopOwnerEmail": "kusalecr@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "pradeepj",
        "shopOwnerPassword": "pradeepj",
        "shopOwnerUserId": 2301,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal ECR",
        "organizationId": 584,
        "modelList": [],
        "shopOwnerName": "ws",
        "shopOwnerEmail": "kusalecr@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "ws",
        "shopOwnerPassword": "ws",
        "shopOwnerUserId": 2302,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal ECR",
        "organizationId": 584,
        "modelList": [],
        "shopOwnerName": "pradeeptest123",
        "shopOwnerEmail": "kusalecr@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "pradeeptest123",
        "shopOwnerPassword": "pradeeptest123",
        "shopOwnerUserId": 2303,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "kusal vadapalani",
        "organizationId": 2549,
        "modelList": [],
        "shopOwnerName": "rade",
        "shopOwnerEmail": "test@test.com",
        "shopOwnerPhone": "56546546",
        "shopOwnerLogin": "rade",
        "shopOwnerPassword": "rade",
        "shopOwnerUserId": 2304,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Kusal ECR",
        "organizationId": 584,
        "modelList": [],
        "shopOwnerName": "pradeeptesting",
        "shopOwnerEmail": "kusalecr@gmail.com",
        "shopOwnerPhone": "123654789",
        "shopOwnerLogin": "pradeeptesting",
        "shopOwnerPassword": "pradeeptesting",
        "shopOwnerUserId": 2350,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "kusal vadapalani",
        "organizationId": 2549,
        "modelList": [],
        "shopOwnerName": "pradeep12434",
        "shopOwnerEmail": "test@test.com",
        "shopOwnerPhone": "56546546",
        "shopOwnerLogin": "pradeep12434",
        "shopOwnerPassword": "pradeep12434",
        "shopOwnerUserId": 2400,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "woodlands10",
        "organizationId": 3249,
        "modelList": [],
        "shopOwnerName": "pradeepmac1",
        "shopOwnerEmail": "sdfg@sdfdfg.com",
        "shopOwnerPhone": "435345",
        "shopOwnerLogin": "pradeepmac",
        "shopOwnerPassword": "acumen",
        "shopOwnerUserId": 2100,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "woodlands",
        "organizationId": 3231,
        "modelList": [],
        "shopOwnerName": "pradeepmac1",
        "shopOwnerEmail": "sdf@sdf.com",
        "shopOwnerPhone": "123",
        "shopOwnerLogin": "pradeepmac",
        "shopOwnerPassword": "acumen",
        "shopOwnerUserId": 2100,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Shop Owner",
        "organizationName": "Pradeep T",
        "organizationId": 3356,
        "modelList": [],
        "shopOwnerName": "pradeepmac1",
        "shopOwnerEmail": "test@test.com",
        "shopOwnerPhone": "3424324",
        "shopOwnerLogin": "pradeepmac",
        "shopOwnerPassword": "acumen",
        "shopOwnerUserId": 2100,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Partner",
        "organizationName": "xxxxxx",
        "organizationId": 3431,
        "modelList": [],
        "shopOwnerName": "venkat",
        "shopOwnerEmail": "venkadachalam.acumen@gmail.com",
        "shopOwnerPhone": "044630630",
        "shopOwnerLogin": "venkat",
        "shopOwnerPassword": "venkat",
        "shopOwnerUserId": 2500,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    },
    {
        "address": "Partner",
        "organizationName": "xperia",
        "organizationId": 3453,
        "modelList": [],
        "shopOwnerName": "xperia.partnar",
        "shopOwnerEmail": "venkadachalam.acumen@gmail.com",
        "shopOwnerPhone": "044630630",
        "shopOwnerLogin": "xperia.partnar",
        "shopOwnerPassword": "xperia.partnar",
        "shopOwnerUserId": 2550,
        "iTotalRecords": 0,
        "iTotalDisplayRecords": 0
    }
]
}