(proj_id)
| 122 | :return: |
| 123 | """ |
| 124 | def check_func(proj_id): |
| 125 | if proj_id.isdigit(): |
| 126 | return True |
| 127 | else: |
| 128 | return False |
| 129 | try: |
| 130 | proj_id = SmartInput().input(prompt="项目编号:", |
| 131 | check_func=check_func, |
nothing calls this directly
no test coverage detected