⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 querypagefielddefine.java

📁 一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs12315src里,没有打包数据库.
💻 JAVA
字号:
package com.gs.pageBuilder.model;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */
public class QueryPageFieldDefine implements java.io.Serializable{

    String pageCode; //页面编号
    String fieldName;//字段名
    String fieldValue;//字段数值
    String explain;//字段说明
    String formatType;//格式输出
    String formatWidth;//格式字宽
    String formatUnit;//格式单位
    String printFlag;//是否打印
    String orderId;//排列顺序

    /**
     * Returns the explain.
     * @return String
     */
    public String getExplain() {
        return explain;
    }

    /**
     * Returns the fieldName.
     * @return String
     */
    public String getFieldName() {
        return fieldName;
    }

    /**
     * Returns the fieldValue.
     * @return String
     */
    public String getFieldValue() {
        return fieldValue;
    }

    /**
     * Returns the formatType.
     * @return String
     */
    public String getFormatType() {
        return formatType;
    }

    /**
     * Returns the orderId.
     * @return String
     */
    public String getOrderId() {
        return orderId;
    }

    /**
     * Returns the pageCode.
     * @return String
     */
    public String getPageCode() {
        return pageCode;
    }

    /**
     * Sets the explain.
     * @param explain The explain to set
     */
    public void setExplain(String explain) {
        this.explain = explain;
    }

    /**
     * Sets the fieldName.
     * @param fieldName The fieldName to set
     */
    public void setFieldName(String fieldName) {
        this.fieldName = fieldName;
    }

    /**
     * Sets the fieldValue.
     * @param fieldValue The fieldValue to set
     */
    public void setFieldValue(String fieldValue) {
        this.fieldValue = fieldValue;
    }

    /**
     * Sets the formatType.
     * @param formatType The formatType to set
     */
    public void setFormatType(String formatType) {
        this.formatType = formatType;
    }

    /**
     * Sets the orderId.
     * @param orderId The orderId to set
     */
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }

    /**
     * Sets the pageCode.
     * @param pageCode The pageCode to set
     */
    public void setPageCode(String pageCode) {
        this.pageCode = pageCode;
    }
    public String getFormatUnit() {
        return formatUnit;
    }
    public String getFormatWidth() {
        return formatWidth;
    }
    public void setFormatUnit(String formatUnit) {
        this.formatUnit = formatUnit;
    }
    public void setFormatWidth(String formatWidth) {
        this.formatWidth = formatWidth;
    }
  public String getPrintFlag() {
    return printFlag;
  }
  public void setPrintFlag(String printFlag) {
    this.printFlag = printFlag;
  }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -