1234567891011121314151617 |
- #!/bin/sh
- year=2031
- month=3
- /root/Envs/userserver/bin/python remove_old_data_by_dt.py --env=production --model ConsumeRecord --year ${year} --month ${month}
- /root/Envs/userserver/bin/python remove_old_data_by_dt.py --env=production --model RechargeRecord --year ${year} --month ${month}
- /root/Envs/userserver/bin/python remove_old_data_by_dt.py --env=production --model DealerIncomeProxy --year ${year} --month ${month}
- /root/Envs/userserver/bin/python remove_old_data_by_date.py --env=production --model DealerDailyStat --year ${year} --month ${month}
- /root/Envs/userserver/bin/python remove_old_data_by_date.py --env=production --model GroupDailyStat --year ${year} --month ${month}
- /root/Envs/userserver/bin/python remove_old_data_by_date.py --env=production --model DeviceDailyStat --year ${year} --month ${month}
- /root/Envs/userserver/bin/python remove_old_data_by_date.py --env=production --model DealerReport --year ${year} --month ${month}
- /root/Envs/userserver/bin/python remove_old_data_by_date.py --env=production --model DevReport --year ${year} --month ${month}
- /root/Envs/userserver/bin/python remove_old_data_by_date.py --env=production --model GroupReport --year ${year} --month ${month}
|