| | |
| | | package com.lf.server.mapper.show; |
| | | |
| | | import com.lf.server.entity.show.ApplyEntity; |
| | | import com.lf.server.entity.show.FlowEntity; |
| | | import com.lf.server.entity.sys.UserEntity; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | |
| | | public UserEntity selectUserByDepid(Integer depid); |
| | | |
| | | /** |
| | | * 查询待审核数 |
| | | * |
| | | * @param userid 用户ID |
| | | * @return 待审核数 |
| | | */ |
| | | public Integer selectSubmits(Integer userid); |
| | | |
| | | /** |
| | | * 查询流程 |
| | | * |
| | | * @param applyid 数据申请ID |
| | | * @return 数据流程 |
| | | */ |
| | | public List<FlowEntity> selectFlows(Integer applyid); |
| | | |
| | | /** |
| | | * 插入一条 |
| | | * |
| | | * @param entity |