冲刺1

(1)未开始

1.项目搭建     2.项目构思

(2)进行中

1.管理个人时间   2.分配本周的工作任务。

(3)已完成

开发代码

package com.drip.mapper;

import com.drip.pojo.User;

import java.util.List;

public interface UserMapper {
  
  int insert(User user);

  int update(User user);

  int delete(Integer id);

  User selectById(Integer id);

  List<User> selectAll();
}

 

  

posted @ 2024-06-05 22:36  chrisrmas、  阅读(3)  评论(0编辑  收藏  举报