I found the right answer from ZLG FAE.. Thanks..
1. using deviceconfig= in the CLI tools
2. I rewrite the struct from zigbee stack.
//define the MAC address
/* Customer MAC address at page 5, word 7 (16-byte words, 16 words/page) */
#define MAC_ADDR1_BASE 0x01001570
/* Default MAC address at page 5, word 8 (16-byte words, 16 words/page) */
#define MAC_ADDR0_BASE 0x01001580
//typedef the struct
typedef struct{
uint32 u32L;
uint32 u32H;
}MAC_ExtAddr_s;
//read the MAC address
sMacFrame.u32L = *(uint32 *)(MAC_ADDR0_BASE + 4);
sMacFrame.u32H = *(uint32 *)(MAC_ADDR0_BASE);