📄 test.java
字号:
// Copyright 2000-2001, Hansky Inc. All Rights Reserved.// Confidential and Propritary Information of Hansky, Inc.// @(#)BaseTpl.java, 1.0, 03/27/2001package com.hansky.tools.template;import java.util.*;/** * @author * @version 1.0, 03/27/2001 */public class ActionLog { int id; String type; String subType; String objectType; int objectId; int acl; String whoDid; String customer; String subject; String note; String arg; long dateStart; long dateEnd; long followupOn; int cost; int billing; String toNumber; String toAddress; int attachmentId; String createdBy; long dateCreated; String hsString1; String hsString2; String hsString3; String hsString4; String hsString5; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getSubType() { return subType; } public void setSubType(String subType) { this.subType = subType; } public String getObjectType() { return objectType; } public void setObjectType(String objectType) { this.objectType = objectType; } public int getObjectId() { return objectId; } public void setObjectId(int objectId) { this.objectId = objectId; } public int getAcl() { return acl; } public void setAcl(int acl) { this.acl = acl; } public String getWhoDid() { return whoDid; } public void setWhoDid(String whoDid) { this.whoDid = whoDid; } public String getCustomer() { return customer; } public void setCustomer(String customer) { this.customer = customer; } public String getSubject() { return subject; } public void setSubject(String subject) { this.subject = subject; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getArg() { return arg; } public void setArg(String arg) { this.arg = arg; } public long getDateStart() { return dateStart; } public void setDateStart(long dateStart) { this.dateStart = dateStart; } public long getDateEnd() { return dateEnd; } public void setDateEnd(long dateEnd) { this.dateEnd = dateEnd; } public long getFollowupOn() { return followupOn; } public void setFollowupOn(long followupOn) { this.followupOn = followupOn; } public int getCost() { return cost; } public void setCost(int cost) { this.cost = cost; } public int getBilling() { return billing; } public void setBilling(int billing) { this.billing = billing; } public String getToNumber() { return toNumber; } public void setToNumber(String toNumber) { this.toNumber = toNumber; } public String getToAddress() { return toAddress; } public void setToAddress(String toAddress) { this.toAddress = toAddress; } public int getAttachmentId() { return attachmentId; } public void setAttachmentId(int attachmentId) { this.attachmentId = attachmentId; } public String getCreatedBy() { return createdBy; } public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } public long getDateCreated() { return dateCreated; } public void setDateCreated(long dateCreated) { this.dateCreated = dateCreated; } public String getHsString1() { return hsString1; } public void setHsString1(String hsString1) { this.hsString1 = hsString1; } public String getHsString2() { return hsString2; } public void setHsString2(String hsString2) { this.hsString2 = hsString2; } public String getHsString3() { return hsString3; } public void setHsString3(String hsString3) { this.hsString3 = hsString3; } public String getHsString4() { return hsString4; } public void setHsString4(String hsString4) { this.hsString4 = hsString4; } public String getHsString5() { return hsString5; } public void setHsString5(String hsString5) { this.hsString5 = hsString5; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -