Integer Column display zero in the Grid (Shopware.grid.Panel)

I have a custom plugin to display data from a table eveything is okay expect the integet columns,

the integer columns coming in json list as integer but zero in the Grid

I tried everything without any success, I hope to have any hint on how i can display this integer value

Thank you in advanced

I found the problem, my model propery was in wronge format,

it was

**private**  **$user\_id** ;

But it should be

**private**  **$userId** ;

the same for the setter and getter, my issue was solved