1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ruoyi.common.constant;
|
| /**
| * 检验类型
| *
| * @Author zhuo
| * @Date 2024/8/11
| */
| public class InsOrderTypeConstants {
| // 检验类型
| public static final String SPOT_CHECK = "抽检";
| // 委托检验
| public static final String CUSTOMER_ORDERED = "Customer-ordered test";
| // 进厂检验
| public static final String ENTER_THE_FACTORY = "进厂检验";
| // 季度检验
| public static final String QUARTERLY_TEST = "Quarterly inspection";
|
| }
|
|