盘点入库,用户加解密

This commit is contained in:
mashuai 2024-05-25 16:32:27 +08:00
parent 4db960c1d6
commit dd8e0e788a
2 changed files with 6 additions and 0 deletions

View File

@ -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);
}

View File

@ -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>