例如(不是逐字)
/**
@Entity
*/
class Event
{
/**
@Column
*/
protected $time_start;
/** .. */
protected $time_end;
/** getters, setters, etc */
/** @return duration of event as a string, non-table function */
public function getDuration() { ... }
}
或者 ORM 应该只是表,仅此而已?
这可能是一种主观观点,因为每个人都有自己的观点,但在编程中,你会做和你真的不应该做的事情。我只是想知道这是否是其中一种情况。