|
@@ -7,6 +7,7 @@ import com.jzg.commons.entity.system.po.SysSystemBusPermsLink;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
@@ -21,6 +22,7 @@ import java.util.stream.Collectors;
|
|
|
@Data
|
|
@Data
|
|
|
@Schema(description = "系统业务权限")
|
|
@Schema(description = "系统业务权限")
|
|
|
@AllArgsConstructor
|
|
@AllArgsConstructor
|
|
|
|
|
+@NoArgsConstructor
|
|
|
public class SysSystemBusPermsVo implements Serializable {
|
|
public class SysSystemBusPermsVo implements Serializable {
|
|
|
|
|
|
|
|
@Schema(description = "主键")
|
|
@Schema(description = "主键")
|
|
@@ -34,34 +36,34 @@ public class SysSystemBusPermsVo implements Serializable {
|
|
|
private String systemCode;
|
|
private String systemCode;
|
|
|
|
|
|
|
|
@Schema(description = "支持报价的保司")
|
|
@Schema(description = "支持报价的保司")
|
|
|
- private String quoteCompany;
|
|
|
|
|
|
|
+ private Integer quoteCompany;
|
|
|
|
|
|
|
|
@Schema(description = "报价的保司")
|
|
@Schema(description = "报价的保司")
|
|
|
private List<String> quoteCompanyList = new ArrayList<>();
|
|
private List<String> quoteCompanyList = new ArrayList<>();
|
|
|
|
|
|
|
|
@Schema(description = "出单方式")
|
|
@Schema(description = "出单方式")
|
|
|
- private String orderMode;
|
|
|
|
|
|
|
+ private Integer orderMode;
|
|
|
|
|
|
|
|
@Schema(description = "订单审核机构")
|
|
@Schema(description = "订单审核机构")
|
|
|
- private String orderAuditDept;
|
|
|
|
|
|
|
+ private Integer orderAuditDept;
|
|
|
|
|
|
|
|
@Schema(description = "订单审核指定机构")
|
|
@Schema(description = "订单审核指定机构")
|
|
|
private List<String> orderAuditDeptList = new ArrayList<>();
|
|
private List<String> orderAuditDeptList = new ArrayList<>();
|
|
|
|
|
|
|
|
@Schema(description = "业务员审核机构")
|
|
@Schema(description = "业务员审核机构")
|
|
|
- private String salesmanAuditDept;
|
|
|
|
|
|
|
+ private Integer salesmanAuditDept;
|
|
|
|
|
|
|
|
@Schema(description = "业务员审核指定机构")
|
|
@Schema(description = "业务员审核指定机构")
|
|
|
private List<String> salesmanAuditDeptList = new ArrayList<>();
|
|
private List<String> salesmanAuditDeptList = new ArrayList<>();
|
|
|
|
|
|
|
|
@Schema(description = "业务员提现账号审核机构")
|
|
@Schema(description = "业务员提现账号审核机构")
|
|
|
- private String salesmanWithdrawAccountAuditDept;
|
|
|
|
|
|
|
+ private Integer salesmanWithdrawAccountAuditDept;
|
|
|
|
|
|
|
|
@Schema(description = "业务员提现账号审核指定机构")
|
|
@Schema(description = "业务员提现账号审核指定机构")
|
|
|
private List<String> salesmanWithdrawAccountAuditDeptList = new ArrayList<>();
|
|
private List<String> salesmanWithdrawAccountAuditDeptList = new ArrayList<>();
|
|
|
|
|
|
|
|
@Schema(description = "业务员提现申请付款审核机构")
|
|
@Schema(description = "业务员提现申请付款审核机构")
|
|
|
- private String salesmanWithdrawPaymentAuditDept;
|
|
|
|
|
|
|
+ private Integer salesmanWithdrawPaymentAuditDept;
|
|
|
|
|
|
|
|
@Schema(description = "业务员提现申请付款审核指定机构")
|
|
@Schema(description = "业务员提现申请付款审核指定机构")
|
|
|
private List<String> salesmanWithdrawPaymentAuditDeptList = new ArrayList<>();
|
|
private List<String> salesmanWithdrawPaymentAuditDeptList = new ArrayList<>();
|