记账本

This commit is contained in:
shuo.wang
2025-03-31 10:14:10 +08:00
parent 4e919f0172
commit ae381ea81a
14 changed files with 512 additions and 3 deletions

View File

@@ -301,8 +301,22 @@ public class XxlJobHandler {
}
/**
* @Auther: wangshuo
* @Date: 2025/3/28
* @description:每个月为可以生成记账的门店生成初始化数据
*/
@XxlJob("initTallyBook")
public void initTallyBook() {
log.info("------start initTallyBook------");
boolean hasNext = true;
int pageNum = 1;
int pageSize = 10;
List<Long> shopIdList = new ArrayList<>();
while (hasNext) {
}
}
}