|
|
@@ -1715,6 +1715,30 @@ public class Constant {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * @author : 周兴
|
|
|
+ * @desc :体验公司(2:标准版体验;3:专业版体验)
|
|
|
+ * @date : 2024-03-15 13:42
|
|
|
+ */
|
|
|
+ public enum Experience {
|
|
|
+ Standard(2),
|
|
|
+ profession(3);
|
|
|
+
|
|
|
+ private Integer name;
|
|
|
+
|
|
|
+ public Integer getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(Integer name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ Experience(Integer name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* @author : 付斌
|
|
|
* @desc :账务对象类型
|
|
|
* @date : 2024-03-15 13:42
|