1源程序清单第一章 部分实体类代码1.1.关于我们实体类代码1.@TableName("aboutus")2.public class AboutusEntity implements Serializable {3.private static final long serialVersionUID = 1L;4.5.6.public AboutusEntity() {7.8.}9.10.public AboutusEntity(T t) {11.try {12.BeanUtils.copyProperties(this, t);13.} catch (IllegalAccessException | InvocationTargetException e) {14.// TODO Auto-generated catch block15.e.printStackTrace();16.}17.}18.19./**20. * 主键 id21. */22. @TableId(type = IdType.AUTO)23....
发表评论取消回复