All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasc.open.api.enums.signtask.SignFieldStatusEnum Maven / Gradle / Ivy

The newest version!
package com.fasc.open.api.enums.signtask;

public enum SignFieldStatusEnum {
    STAMPED("stamped", "已盖章"),
    UN_STAMPED("unstamped", "未盖章");

    private String code;
    private String remark;

    SignFieldStatusEnum(String code, String remark) {
        this.code = code;
        this.remark = remark;
    }

    public String getCode() {
        return code;
    }

    public String getRemark() {
        return remark;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy