xiaogang
2021-03-13 c3b5bbea29386128bb09da0978fb70da0b5dce39
java110-bean/src/main/java/com/java110/dto/purchaseApply/PurchaseApplyDto.java
@@ -17,6 +17,12 @@
 **/
public class PurchaseApplyDto extends PageDto implements Serializable {
    public static final String RES_ORDER_TYPE_ENTER = "10000"; //采购入库
    public static final String RES_ORDER_TYPE_OUT = "20000"; //出库
    public static final String STATE_WAIT_DEAL = "1000"; // 等待处理
    public static final String STATE_DEALING = "1001"; // 审核中
    private String resOrderType;
    private String description;
    private String applyOrderId;
@@ -43,6 +49,7 @@
    private String staffId;
    private String staffName;
    private String staffTel;
    private String startUserId;
@@ -232,4 +239,12 @@
    public void setApplyOrderIds(String[] applyOrderIds) {
        this.applyOrderIds = applyOrderIds;
    }
    public String getStartUserId() {
        return startUserId;
    }
    public void setStartUserId(String startUserId) {
        this.startUserId = startUserId;
    }
}