fix:提交到整个项目能跑通,有几个接口不标准

This commit is contained in:
彭帅
2026-05-29 17:53:27 +08:00
parent c5d4d7a7e1
commit aa8cc716eb
83 changed files with 7054 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
INSERT INTO breeding_method (auth_user_id, id, abbreviation, name, description) VALUES ('anonymousUser', 'breeding_method1', 'MB', 'Male Backcross', 'Backcross to recover a specific gene.');
INSERT INTO breeding_method (auth_user_id, id, abbreviation, name, description) VALUES ('anonymousUser', 'breeding_method2', 'S', 'Self', 'Self pollination');
INSERT INTO breeding_method (auth_user_id, id, abbreviation, name, description) VALUES ('anonymousUser', 'breeding_method1', 'MB', 'Male Backcross', 'Backcross to recover a specific gene.')
ON CONFLICT (id) DO UPDATE SET abbreviation = EXCLUDED.abbreviation, name = EXCLUDED.name, description = EXCLUDED.description;
INSERT INTO breeding_method (auth_user_id, id, abbreviation, name, description) VALUES ('anonymousUser', 'breeding_method2', 'S', 'Self', 'Self pollination')
ON CONFLICT (id) DO UPDATE SET abbreviation = EXCLUDED.abbreviation, name = EXCLUDED.name, description = EXCLUDED.description;