1
1 天以前 8cdeb3f101eb31b53e1dc4cc84c14ed9ad03f44f
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;
            }
        }
    }
}