Checkcust.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;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
public class Checkcust implements Serializable {
// --------------------------------------------------------- Instance Variables
private String action;
private String checkcustId;
private Long checkcustRrn;
private String description;
private String holdReason;
private String holdCode;
private String holdGroup;
private long facilityRrn;
private String createTime;
private String createUser;
private String updateTime;
private String updateUser;
private Long start;
private Long limit;
private String nav;
private String checkBox;
private Collection checkcustItems = new ArrayList();
public String getAction() {
return action;
}
public void setAction(String action) {
this.action = action;
}
public String getCheckcustId() {
return checkcustId;
}
public void setCheckcustId(String checkcustId) {
this.checkcustId = checkcustId;
}
public Long getCheckcustRrn() {
return checkcustRrn;
}
public void setCheckcustRrn(Long checkcustRrn) {
this.checkcustRrn = checkcustRrn;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getHoldReason() {
return holdReason;
}
public void setHoldReason(String holdReason) {
this.holdReason = holdReason;
}
public String getHoldCode() {
return holdCode;
}
public void setHoldCode(String holdCode) {
this.holdCode = holdCode;
}
public String getHoldGroup() {
return holdGroup;
}
public void setHoldGroup(String holdGroup) {
this.holdGroup = holdGroup;
}
public long getFacilityRrn() {
return facilityRrn;
}
public void setFacilityRrn(long facilityRrn) {
this.facilityRrn = facilityRrn;
}
public Long getStart() {
return start;
}
public void setStart(Long start) {
this.start = start;
}
public Long getLimit() {
return limit;
}
public void setLimit(Long limit) {
this.limit = limit;
}
public String getNav() {
return nav;
}
public void setNav(String nav) {
this.nav = nav;
}
public String getCheckBox() {
return checkBox;
}
public void setCheckBox(String checkBox) {
this.checkBox = checkBox;
}
public Collection getCheckcustItems() {
return checkcustItems;
}
public void setCheckcustItems(Collection checkcustItems) {
this.checkcustItems = checkcustItems;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getCreateUser() {
return createUser;
}
public void setCreateUser(String createUser) {
this.createUser = createUser;
}
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public String getUpdateUser() {
return updateUser;
}
public void setUpdateUser(String updateUser) {
this.updateUser = updateUser;
}
// --------------------------------------------------------- Properties
}
/*
* Modification Log Log No :01 Name :Wind Modified Date:2001/10/10 Description :Add constructors
*/