123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- package com.ruoyi.change.domain;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 资产借出对象 tb_asset_lend
- *
- * @author 原动力
- * @date 2023-05-15
- */
- public class TbAssetLend extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 编号 */
- private Long id;
- /** 借出单号 */
- @Excel(name = "借出单号")
- private String orderNumber;
- /** 资产总原值(元) */
- @Excel(name = "资产总原值", readConverterExp = "元=")
- private String assetTotalOriginalValue;
- /** 资产总净值(元) */
- @Excel(name = "资产总净值", readConverterExp = "元=")
- private String assetTotalNetValue;
- /** 申请日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "申请日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date applicationDate;
- /** 借出部门 */
- @Excel(name = "借出部门")
- private String lendDepartment;
- /** 经手人 */
- @Excel(name = "经手人")
- private String bySponsor;
- /** 往来单位 */
- @Excel(name = "往来单位")
- private String passingUnit;
- /** 借用说明 */
- @Excel(name = "借用说明")
- private String reason;
- /** 制单人 */
- @Excel(name = "制单人")
- private String preparedBy;
- /** 制单部门 */
- @Excel(name = "制单部门")
- private String preparedDepartment;
- /** 所属公司 */
- @Excel(name = "所属公司")
- private String corporation;
- /** 记录状态 */
- @Excel(name = "记录状态")
- private Long recordStatus;
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setOrderNumber(String orderNumber)
- {
- this.orderNumber = orderNumber;
- }
- public String getOrderNumber()
- {
- return orderNumber;
- }
- public void setAssetTotalOriginalValue(String assetTotalOriginalValue)
- {
- this.assetTotalOriginalValue = assetTotalOriginalValue;
- }
- public String getAssetTotalOriginalValue()
- {
- return assetTotalOriginalValue;
- }
- public void setAssetTotalNetValue(String assetTotalNetValue)
- {
- this.assetTotalNetValue = assetTotalNetValue;
- }
- public String getAssetTotalNetValue()
- {
- return assetTotalNetValue;
- }
- public void setApplicationDate(Date applicationDate)
- {
- this.applicationDate = applicationDate;
- }
- public Date getApplicationDate()
- {
- return applicationDate;
- }
- public void setLendDepartment(String lendDepartment)
- {
- this.lendDepartment = lendDepartment;
- }
- public String getLendDepartment()
- {
- return lendDepartment;
- }
- public void setBySponsor(String bySponsor)
- {
- this.bySponsor = bySponsor;
- }
- public String getBySponsor()
- {
- return bySponsor;
- }
- public void setPassingUnit(String passingUnit)
- {
- this.passingUnit = passingUnit;
- }
- public String getPassingUnit()
- {
- return passingUnit;
- }
- public void setReason(String reason)
- {
- this.reason = reason;
- }
- public String getReason()
- {
- return reason;
- }
- public void setPreparedBy(String preparedBy)
- {
- this.preparedBy = preparedBy;
- }
- public String getPreparedBy()
- {
- return preparedBy;
- }
- public void setPreparedDepartment(String preparedDepartment)
- {
- this.preparedDepartment = preparedDepartment;
- }
- public String getPreparedDepartment()
- {
- return preparedDepartment;
- }
- public void setCorporation(String corporation)
- {
- this.corporation = corporation;
- }
- public String getCorporation()
- {
- return corporation;
- }
- public void setRecordStatus(Long recordStatus)
- {
- this.recordStatus = recordStatus;
- }
- public Long getRecordStatus()
- {
- return recordStatus;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("orderNumber", getOrderNumber())
- .append("assetTotalOriginalValue", getAssetTotalOriginalValue())
- .append("assetTotalNetValue", getAssetTotalNetValue())
- .append("applicationDate", getApplicationDate())
- .append("lendDepartment", getLendDepartment())
- .append("bySponsor", getBySponsor())
- .append("passingUnit", getPassingUnit())
- .append("reason", getReason())
- .append("preparedBy", getPreparedBy())
- .append("preparedDepartment", getPreparedDepartment())
- .append("corporation", getCorporation())
- .append("recordStatus", getRecordStatus())
- .toString();
- }
- }
|