踏实煎蛋

文章
5
资源
0
加入时间
2年10月21天

(一)springboot+mybatisPlus1  新建一个springboot项目  2加入mybatisPlus依赖3 在yml文件中配置mysql数据库4代码生成5在 Spring Boot 启动类中添加 @MapperScan 注解,扫描 Mapper 文件夹6运行main函数 生成代码7 在controller中测试我们的整合结果

1 新建一个springboot项目2加入mybatisPlus依赖<dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.3.1</version

运算符基础

运算符算术运算符*+ , - , , / , % , ++ , - - **//算数运算符 int a = 10; int b = 20; int c = 25; int d = 25; System.out.println(a + b); System.out.println(a - b); System.out.println(a * b); System.out.println(a / (double) b); /

如何实现CAPP、CMainFrame、CViEW和CDOC之间相互调用?

例如:我在CMainFrame 中写代码,要访问CVIEW类中的数据,该怎么写代码?在CMainFrame 中,要访问CDOC类中的数据,该怎么写代码?CVIEW类要访问CDOC类中的数据,该怎么写代码? 假设你是单文档单个VIEW的程序。那么:1)CMainFrame:      GetActiveView()可得到View指针。例如: CyourView   *pView=(CyourView