emt-record-time-2.1初始时间为2019年.sql 1.4 KB

12345678910111213141516171819202122232425262728
  1. use wms_data;
  2. DELETE FROM emt_record_time;
  3. -- 企业库存信息
  4. INSERT INTO emt_record_time (data_type, last_time, this_time, creater_sn, create_time, moder_sn, mod_time) VALUES (
  5. 'ACQ_INVENTORY_INFO', '2019-01-01 00:00:00', '2019-01-01 00:00:00', '1', now(), '1', now()
  6. );
  7. -- 企业货物上下架信息
  8. -- 上架
  9. INSERT INTO emt_record_time (data_type, last_time, this_time, creater_sn, create_time, moder_sn, mod_time) VALUES (
  10. 'ACQ_SHELF_LOAD', '2019-01-01 00:00:00', '2019-01-01 00:00:00', '1', now(), '1', now()
  11. );
  12. -- 下架
  13. INSERT INTO emt_record_time (data_type, last_time, this_time, creater_sn, create_time, moder_sn, mod_time) VALUES (
  14. 'ACQ_SHELF_LOAD_DOWN', '2019-01-01 00:00:00', '2019-01-01 00:00:00', '1', now(), '1', now()
  15. );
  16. -- 企业货物在仓库的移动信息
  17. -- 上架
  18. INSERT INTO emt_record_time (data_type, last_time, this_time, creater_sn, create_time, moder_sn, mod_time) VALUES (
  19. 'ACQ_GOODS_MOVE_UP', '2019-01-01 00:00:00', '2019-01-01 00:00:00', '1', now(), '1', now()
  20. );
  21. -- 下架
  22. INSERT INTO emt_record_time (data_type, last_time, this_time, creater_sn, create_time, moder_sn, mod_time) VALUES (
  23. 'ACQ_GOODS_MOVE_DOWN', '2019-01-01 00:00:00', '2019-01-01 00:00:00', '1', now(), '1', now()
  24. );
  25. -- 库位上的货物信息
  26. INSERT INTO emt_record_time (data_type, last_time, this_time, creater_sn, create_time, moder_sn, mod_time) VALUES (
  27. 'ACQ_GOODS_ON_SEAT', '2019-01-01 00:00:00', '2019-01-01 00:00:00', '1', now(), '1', now()
  28. );