Commit b9a8f4c5 by huluobin

# update

parent db4c6e7f
package com.blt.other.database.model;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
......@@ -21,7 +23,9 @@ public class CostLogDomain {
public static final int HR_PASS = 8;
@TableId(type = IdType.AUTO)
private Integer id; // 费用单日志
private String costNo; // 费用单号
private String updateUsercode; // 更新人编号
private String updateUsername; // 更新人姓名
......@@ -32,9 +36,5 @@ public class CostLogDomain {
private Integer updateUserid; // 更新人 ID
//1-普通日志 2-部门审核费用单 3-部门审核费用单
//4 -财务部门自动通过审核 5-财务部门手动审核
//6-最终审核自动通过 7-最终审核手动通过
//
private Integer type;
}
package com.blt.other.module.cost.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.blt.other.database.model.CostLogDomain;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
......@@ -8,7 +9,7 @@ import java.util.List;
@Mapper
@Repository
public interface CostLogDao {
public interface CostLogDao extends BaseMapper<CostLogDomain> {
List<CostLogDomain> selectByCostNo(String costNo);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment