fhx
2023-06-09 7dc9e8d16831768b6412ce7f47f175f3e0082e21
phis-feign/src/main/java/com/hz/his/dto/order/CancelOrderDto.java
@@ -14,14 +14,24 @@
    /** 操作人id 必填*/
    private String operatorId;
    /** 平台来源   必填*/
    /** 操作人角色id 必填*/
    private String roleId;
    /** 是否需要审批  (0否 1是)   必填*/
    private Integer isApproval;
    /** 是否自动生成退款单  (0否 1是)   必填*/
    private Integer isRefund;
    /** 平台来源  因为是his助手取消订单的话就要自动确认退款单  必填*/
    private Integer platformSource;
    /**his助手*/
    public static  Integer HIS_ASSISTANT = 0;
    public static final Integer HIS_ASSISTANT = 0;
     /**his后台*/
    public static  Integer HIS_BACKSTAGE = 1;
    public static final Integer HIS_BACKSTAGE = 1;
    /**导医*/
    public static final Integer PHIS_GUIDE = 2;
}