```[sql]
CREATE TABLE `c_day_price` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`goods_id` int(10) NOT NULL DEFAULT '0' COMMENT '產品id',
`goods_no` varchar(30) NOT NULL DEFAULT '' COMMENT '產品編號',
`day_stock` int(10) NOT NULL DEFAULT '0' COMMENT '日庫存',
`stock` int(10) NOT NULL DEFAULT '0' COMMENT '剩余日庫存',
`supply_price` double(10,2) NOT NULL DEFAULT '0.00' COMMENT '供應價',
`balance_price` double(10,2) DEFAULT NULL COMMENT '結算價',
`use_time` int(10) NOT NULL DEFAULT '0' COMMENT '使用時間',
`update_time` int(10) NOT NULL DEFAULT '0' COMMENT '更新時間',
`create_time` int(10) NOT NULL DEFAULT '0' COMMENT '創建時間',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9643 DEFAULT CHARSET=utf8;
```