| | |
| | | SELECT * FROM T_Quality_monthy WHERE NY = #{ dateTime } |
| | | </select> |
| | | |
| | | <select id="findListProductDay" resultType="org.jeecg.modules.mdcJc.entity.ProductDayschedule"> |
| | | SELECT * FROM T_ProductDayschedule WHERE PlanDate = #{ dateTime } |
| | | </select> |
| | | |
| | | <select id="onLineQueueList" resultType="org.jeecg.modules.mdcJc.entity.OnLineQueue"> |
| | | SELECT * FROM T_OnLine_Queue |
| | | </select> |
| | | |
| | | <select id="findListOnLineQueue" resultType="org.jeecg.modules.mdcJc.entity.OnLineQueue"> |
| | | SELECT * FROM T_OnLine_Queue WHERE ID > #{id} |
| | | </select> |
| | | |
| | | <select id="underLineQueueList" resultType="org.jeecg.modules.mdcJc.entity.UnderLineQueue"> |
| | | SELECT * FROM T_UnderLine_Queue |
| | | </select> |
| | | |
| | | <select id="findListUnderLineQueue" resultType="org.jeecg.modules.mdcJc.entity.UnderLineQueue"> |
| | | SELECT * FROM T_UnderLine_Queue WHERE ID > #{id} |
| | | </select> |
| | | |
| | | <select id="findYesterdayData" resultType="org.jeecg.modules.mdcJc.entity.MdcProductDayschedule"> |
| | | SELECT |
| | | SUM(planCount) planDate, |
| | | SUM ( completionCount ) completionCount, |
| | | SUM ( qualifiedCount ) qualifiedCount |
| | | FROM |
| | | mdcJc_ProductDayschedule |
| | | WHERE |
| | | planDate = #{date} |
| | | </select> |
| | | |
| | | </mapper> |