单表继承比较简单,资料相对也多 但是多表继承,基本上找不到什么靠谱的资料 求指点 最近项目中,有用到 两个表的字段相差较大. 不胜感谢 不管是思路或者资料
首先感谢:@bony
我举个例子吧
class Order < ActiveRecord::Base
# here goes the code
end
class TaobaoOrder < Order
# some code
end
class PaipaiOrder < Order
# some code
end
就像这样的继承 然后让 TaobaoOrder 和 PaipaiOrder 都有自己的表
----------- 华丽的分割线 --------------------------- 再次感谢大家的回复 我会一一尝试