@Table("yb_res_info")
@View("res_info_view")
public class ResInfo{
@Id(auto = true)
@Column("res_id")
ResInfo resInfo = this.fetch(resId[i]); resInfo 为null
注销@view 一切正常了,为什么?
@Table("yb_res_info")
@View("res_info_view")
public class ResInfo{
@Id(auto = true)
@Column("res_id")
ResInfo resInfo = this.fetch(resId[i]); resInfo 为null
注销@view 一切正常了,为什么?
@wendal 现在是不是已经可以支持了。。
http://nutzam.com/core/dao/view.html
@Table("t_employee")
@View("v_employee") // <- 这里声明了视图
public class Employee{
@Id
private int id;
...
@Column("taskcount") // 其实可以不用声明数据库字段名 "taskcount",因为多数数据库忽略大小写
@Readonly // <- 这里声明了只读字段,即视图里增加的字段
private int taskCount;
...
}