盘点入库,用户加解密
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.Mapper;
|
||||||
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -61,4 +62,6 @@ public interface InventoryAndWarehousingMapper {
|
||||||
int selectByCode(String code);
|
int selectByCode(String code);
|
||||||
|
|
||||||
int selectById(Integer id);
|
int selectById(Integer id);
|
||||||
|
|
||||||
|
int selectTaskNumByMonth(@Param("date") Date nowDate);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -200,4 +200,7 @@
|
||||||
<if test="id != null">and ID = #{id}</if>
|
<if test="id != null">and ID = #{id}</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</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>
|
</mapper>
|
||||||
Loading…
Reference in New Issue