12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- 1.正式常规任务与临时任务的区别,
- 2.如何查询超期未完成的伤
- dt_article 检查标准 或者 待检任务
- SetNoFinish
- select * from dt_article where add_time < GetDate() and status=0 and is_top=0 and is_sys = 0
- select * from dt_article where add_time < GetDate() and status=0 and is_top=0 and is_sys = 0
- select * from dt_article_category where seo_keywords != '' and id in(select category_id from dt_article where is_top=1)
- select * from dt_article where is_top=1
- -- 已完成 待审核
- select * from dt_article
- where is_msg = 0 -- 待审核
- and status = 1 -- 已完成
- and is_top = 0 -- 非标准
- 1插入正常任务
- AddTask
- article_category 检查项目,检查点
- article 检查标准 is_top = 1
- SetNoFinish status = 3 是什么意思
- status, is_top = 0
- 0 未完成
- 1 已完成
- 2 已取消
- 3 无完成
- is_msg
- 0 待审核
- 1 已审核
- is_top = 1
- 检查标准
- audit_result 0-重检,1-确认通过
- article_attribute_value 检查频率
- GetForAudit type = 1 管理员查找 过期未做
- GetTaskCount type = 3 会员查看 过期未做
- convert(varchar(10),GETDATE(),120)
|