仓库迁移

This commit is contained in:
andy
2023-06-10 11:52:00 +08:00
parent e4616bfae5
commit 077c27f2bb
499 changed files with 199745 additions and 92 deletions

29
python/scheme_data.c Normal file
View File

@@ -0,0 +1,29 @@
#include "stdint.h"
typedef struct{
uint32_t max;
uint32_t min;
}item_def;
typedef struct
{
uint32_t item_num;
item_def data[0];
}task_def;
typedef struct
{
uint32_t plan_id;
uint32_t timeout_m;
uint32_t task_num;
task_def data[0];
}scheme_def;