CheckcustItem.java

/*
 *        @ Copyright 2001 FA Software;
 *        All right reserved. No part of this program may be reproduced or
 *        transmitted in any form or by any means, electronic or
 *        mechanical, including photocopying, recording, or by any
 *        information storage or retrieval system without written
 *        permission from FA Software, except for inclusion of brief
 *        quotations in a review.
 */
package com.mycim.valueobject.sys;

public class CheckcustItem implements java.io.Serializable {

    // --------------------------------------------------------- Instance Variables
    private Long custDetailRrn;

    private Long checkcustRrn;

    private String condition;

    private String conOperator;

    private String conValue;


    public Long getCustDetailRrn() {
        return custDetailRrn;
    }

    public void setCustDetailRrn(Long custDetailRrn) {
        this.custDetailRrn = custDetailRrn;
    }

    public Long getCheckcustRrn() {
        return checkcustRrn;
    }

    public void setCheckcustRrn(Long checkcustRrn) {
        this.checkcustRrn = checkcustRrn;
    }

    public String getCondition() {
        return condition;
    }

    public void setCondition(String condition) {
        this.condition = condition;
    }

    public String getConOperator() {
        return conOperator;
    }

    public void setConOperator(String conOperator) {
        this.conOperator = conOperator;
    }

    public String getConValue() {
        return conValue;
    }

    public void setConValue(String conValue) {
        this.conValue = conValue;
    }


    // --------------------------------------------------------- Properties

}

/*
 * Modification Log Log No :01 Name :Wind Modified Date:2001/10/11 Description :rename properties
 */