盘点入库,用户加解密
This commit is contained in:
parent
4db960c1d6
commit
dd8e0e788a
|
|
@ -5,6 +5,7 @@ import com.bonus.sgzb.material.domain.PutInStorageBean;
|
|||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
|
|
@ -61,4 +62,6 @@ public interface InventoryAndWarehousingMapper {
|
|||
int selectByCode(String code);
|
||||
|
||||
int selectById(Integer id);
|
||||
|
||||
int selectTaskNumByMonth(@Param("date") Date nowDate);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -200,4 +200,7 @@
|
|||
<if test="id != null">and ID = #{id}</if>
|
||||
</where>
|
||||
</select>
|
||||
<select id="selectTaskNumByMonth" resultType="java.lang.Integer">
|
||||
select count(*) from ma_type_put_in_storage_info where DATE_FORMAT(CREATE_DATE,'%y%m') = DATE_FORMAT(#{date},'%y%m')
|
||||
</select>
|
||||
</mapper>
|
||||
Loading…
Reference in New Issue