使用mybatis不需要拼凑各种resultMap,通过extends和resultMap直接对应自定义实体类
商品信息表对应的实体类PmsProduct/** * 商品信息表 */public class PmsProduct implements Serializable { private Long id; private Long brandId; private Long productCategoryId; private Long feightTemplateId; private Long productAttributeCategoryI.