Explorar el Código

添加鮀岛业务逻辑文件

shuiping150 hace 9 años
padre
commit
1ff4473707
Se han modificado 3 ficheros con 47 adiciones y 1 borrados
  1. 2 0
      APS相关知识点.txt
  2. 4 1
      OA_Android_开发知识点.txt
  3. 41 0
      鮀岛/业务数据逻辑.txt

+ 2 - 0
APS相关知识点.txt

@@ -65,6 +65,8 @@
 9.ΘηΊΞΏΙ�Τ·½±γ΅ΨΕΕ²ϊ
 
 
+1.
+
 
 
 

+ 4 - 1
OA_Android_开发知识点.txt

@@ -39,4 +39,7 @@
 	
 10.RecyclerView清空图片,没有刷新的问题分析
 	首先要了解RecyclerView的运行机制,RecyclerView需要接受RecyclerView.Adapter,且实现onCreateViewHolder、onBindViewHolder、getItemCount
-	这里当数据源变更需要通知RecyclerView,调用onBindViewHolder重新刷新界面,所以这里清图片,需要通知界面删除了多少图片notifyItemRangeRemoved(position,count)
+	这里当数据源变更需要通知RecyclerView,调用onBindViewHolder重新刷新界面,所以这里清图片,需要通知界面删除了多少图片notifyItemRangeRemoved(position,count)
+	
+开发环境
+如果提示Gradle版本问题,可以在修改wapper.property文件到对应的版本号

+ 41 - 0
鮀岛/业务数据逻辑.txt

@@ -0,0 +1,41 @@
+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
+
+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
+检查标准
+
+article_attribute_value 检查频率
+
+GetForAudit type = 1 管理员查找 过期未做
+
+GetTaskCount type = 3 会员查看 过期未做
+
+convert(varchar(10),GETDATE(),120)