1
3 天以前 80677945b8ad3f73870e0b6d5a424e7130694431
rsf-open-api/src/main/java/com/vincent/rsf/openApi/entity/phyz/Order.java
@@ -75,4 +75,24 @@
    private String saleUserId;
    // 销售员名称
    private String saleUserName;
    public void setType(String type) {
        if (type == null) {
            this.type = type;
        } else {
            switch (type) {
                case "1":
                    this.type = "out";
                    break;
                case "2":
                    this.type = "in";
                    break;
                case "3":
                    this.type = "check";
                    break;
                default:
                    this.type = type;
            }
        }
    }
}