本文解答了关于《资产清理是否交税》相关内容,同时关于1、资产清理是否交税了,2、资产清理收入需要缴纳增值税吗,3、资产清理费用,4、资产清理收费标准,5、资产清理账务处理,的相关问答本篇文章福途教育网小编也整理了进来,希望对您有帮助。
资产清理是否交税
*/
public void setIsTax(String isTax)
{
this.isTax = isTax;
}
/**
* 返回 是否符合国家资产清理是否交税
* @return
*/
public String getIsTax()
{
return this.isTax;
}
public void setRemark(String remark)
{
this.remark = remark;
}
/**
* 返回 备注
* @return
*/
public String getRemark()
{
return this.remark;
}
public void setProcessName(String processName)
{
this.processName = processName;
}
/**
* 返回 流程名字
* @return
*/
public String getProcessName()
{
return this.processName;
}
public void setNodeName(String nodeName)
{
this.nodeName = nodeName;
}
/**
* 返回 节点名字
* @return
*/
public String getNodeName()
{
return this.nodeName;
}
public void setEntrustName(String entrustName)
{
this.entrustName = entrustName;
}
/**
* 返回 委托人
* @return
*/
public String getEntrustName()
{
return this.entrustName;
}
public void setTaskId(Long taskId)
{
this.taskId = taskId;
}
/**
* 返回 TaskId
* @return
*/
public Long getTaskId()
{
return this.taskId;
}
/**
* @see java.lang.Object#equals(Object)
*/
public boolean equals(Object object)
{
if (!(object instanceof SpAssetClear))
{
return false;
}
SpAssetClear rhs = (SpAssetClear) object;
return new EqualsBuilder()
.append(this.id, rhs.id)
.append(this.proTypeId, rhs.proTypeId)
.append(this.actDefId, rhs.actDefId)
.append(this.userId, rhs.userId)
.append(this.userName, rhs.userName)
.append(this.finishTime, rhs.finishTime)
.append(this.duration, rhs.duration)
.append(this.amount, rhs.amount)
.append(this.proInstId, rhs.proInstId)
.append(this.proName, rhs.proName)
.append(this.isTax, rhs.isTax)
.append(this.remark, rhs.remark)
.append(this.processName, rhs.processName)
.append(this.nodeName, rhs.nodeName)
.append(this.entrustName, rhs.entrustName)
.append(this.taskId, rhs.taskId)
.isEquals();
}
/**
* @see java.lang.Object#hashCode()
*/
public int hashCode()
{
return new HashCodeBuilder(-82280557, -700257973)
.append(this.id)
.append(this.proTypeId)
.append(this.actDefId)
.append(this.userId)
.append(this.userName)
.append(this.finishTime)
.append(this.duration)
.append(this.amount)
.append(this.proInstId)
.append(this.proName)
.append(this.isTax)
.append(this.remark)
.append(this.processName)
.append(this.nodeName)
.append(this.entrustName)
.append(this.taskId)
.toHashCode();
}
/**
* @see java.lang.Object#toString()
*/
public String toString()
{
return new ToStringBuilder(this)
.append("id", this.id)
.append("proTypeId", this.proTypeId)
.append("actDefId", this.actDefId)
.append("userId", this.userId)
.append("userName", this.userName)
.append("finishTime", this.finishTime)
.append("duration", this.duration)
.append("amount", this.amount)
.append("proInstId", this.proInstId)
.append("proName", this.proName)
.append("isTax", this.isTax)
.append("remark", this.remark)
.append("processName", this.processName)
.append("nodeName", this.nodeName)
.append("entrustName", this.entrustName)
.append("taskId", this.taskId)
.toString();
}
}
总结:以上是编辑:【陶馨竺】整理及AI智能原创关于《资产清理是否交税
》优质内容解答希望能帮助到您。