冀北台账管理接口开发

This commit is contained in:
cdf
2024-05-16 13:47:20 +08:00
parent 2e6ac4f07e
commit 3ef85be49d
3 changed files with 20 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ import java.util.List;
import java.util.Map;
/**
*
*
* Description:
* Date: 2024/4/25 10:07【需求编号】
*
@@ -141,7 +141,10 @@ public class UserReportParam extends BaseEntity {
@ApiModelProperty(value="所属区域")
private String city;
@ApiModelProperty(value="数据来源类型 0正常审核流程 1批量导入")
private Integer dataType;
}
}
}

View File

@@ -12,7 +12,7 @@ import lombok.NoArgsConstructor;
import java.time.LocalDate;
/**
*
*
* Description:
* Date: 2024/4/25 10:07【需求编号】
*
@@ -114,6 +114,12 @@ public class UserReportPO extends BaseEntity {
@TableField(value = "process_instance_id")
private String processInstanceId;
/**
* 数据来源类型 0.正常流程审核入库 1.批量导入
*/
@TableField(value = "data_type")
private Integer dataType;
/**
* 审批状态1:审批中2审批通过3审批不通过4已取消
@@ -129,4 +135,4 @@ public class UserReportPO extends BaseEntity {
private Integer state;
}
}