我有两张桌子(feasy_marcacao和feasy_servico)。现在我有这个代码:
<td><?php echo $feasy_marcacao->getServicoId() ?></td>
但这会得到我的身份证号码,我想要该ID的描述。 这是我的架构:
FeasyServico:
columns:
descricao: { type: string(255), notnull: true, unique: true }
FeasyMarcacao:
actAs: { Timestampable: ~ }
columns:
nome: { type: string(255), notnull: true }
email: { type: string(255), notnull: true }
contacto: { type: string(255), notnull: true }
servico_id: { type: integer, notnull: true }
dia: { type: date, notnull: true }
hora: { type: time, notnull: true }
relations:
FeasyServico: { onDelete: CASCADE, local: servico_id, foreign: id }
希望我能很好地解释自己。谢谢你的时间。
答案 0 :(得分:2)
直接前进:
echo $feasy_marcacao->getFeasyServico()->getDescricao();