今日晚餐
要根据需求文档来进行开发,而不是根据线上项目来进行开发,根据文档来进行开发,今天吃大亏了
。
添加一条数据需要编写对应的Request.java,删除只要写service.java、serviceimpl.java、controller.java即可
,修改
自己还没弄明白!!。
1L 就是 Long 1的意思。
idea搜索注释:edit---find---find in path。
@Size注解:对字段的长度进行约束:@Size(min = 1, max = 30, message = "仓库名称" + HibernateConstant.LIMIT_30)
。
@NotNull注解:字段不能为空:@NotNull(message = "性质" + HibernateConstant.NOT_NULL)
。
range(1,100)函数:range(start,end,step跳跃步数)
,返回一个1到99组成的序列。
生成一个1-99的list:list(range(1,100));
MySQL查id为1和id为2的全部数据:select * from student where id in (1,2,3,4,5);
MySQL把查询出来的数据插入到某个表中:
insert into basic_order_face_sheet_monitor_people (user_name,email,phone,`status`,create_time) select user_name,email,phone_number,`status`,create_time from sys_user where id in(693473276474687489);
target_table不存在,因为在插入时会自动创建
。