todolist taskStatus
This commit is contained in:
parent
a521cf21a3
commit
44352c5b68
|
|
@ -37,6 +37,11 @@ public class ToDoBean extends BaseEntity {
|
||||||
@ApiModelProperty(value = "任务类型")
|
@ApiModelProperty(value = "任务类型")
|
||||||
private String taskType;
|
private String taskType;
|
||||||
|
|
||||||
|
/** 任务状态 */
|
||||||
|
@Excel(name = "任务状态")
|
||||||
|
@ApiModelProperty(value = "任务状态")
|
||||||
|
private String taskStatus;
|
||||||
|
|
||||||
/** 代办事件 */
|
/** 代办事件 */
|
||||||
@Excel(name = "代办事件")
|
@Excel(name = "代办事件")
|
||||||
@ApiModelProperty(value = "代办事件")
|
@ApiModelProperty(value = "代办事件")
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
WHERE
|
WHERE
|
||||||
tt.`status` = '1'
|
tt.`status` = '1'
|
||||||
and tt.task_type in (2)
|
and tt.task_type in (2)
|
||||||
and tt.task_status in (1,2,3,4,5,10,15,20,99)
|
|
||||||
<if test="buyerCompanyId != null">
|
<if test="buyerCompanyId != null">
|
||||||
and tt.buyer_company_id=#{buyerCompanyId} || tt.seller_company_id=#{buyerCompanyId}
|
and tt.buyer_company_id=#{buyerCompanyId} || tt.seller_company_id=#{buyerCompanyId}
|
||||||
</if>
|
</if>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue