@hac = HacCfgGroup.find(1897)
b = @hac
>> @hac.status
=> 2
>> @hac.status = 4
=> 4
>> b.status
=> 4
HacCfgGroup is an object with many attributes. How to let b keep its original value? spent so long on it still cannot figure out how to keep an object without changed.