package com.goafanti.patent.bo; import java.math.BigDecimal; import java.util.List; import com.goafanti.common.model.PatentNew; import com.goafanti.common.utils.excel.Excel; public class PatentNewBo extends PatentNew{ /** * */ private static final long serialVersionUID = 1L; @Excel(name = "专利编号") private String patentNo; @Excel(name = "专利名称") private String name; @Excel(name = "类型", readConverterExp="0=发明专利,1=实用新型,2=外观设计") private Integer type; @Excel(name = "申请日期") private String applyDates; @Excel(name = "权利人") private String holders; @Excel(name = "授权日期") private String authorizationDates; @Excel(name = "发明人") private String inventor; @Excel(name = "年费状态",readConverterExp = "0=无信息,1=代缴费") private Integer annualFeeStatus; @Excel(name = "营销员提醒状态",readConverterExp = "0=未提醒,1=已提醒") private Integer salesmanRemind; @Excel(name = "email") private String email; @Excel(name = "年费") private BigDecimal patentAmount; @Excel(name = "滞纳金") private BigDecimal delayingAmount; @Excel(name = "恢复金") private BigDecimal recoveryAmount; @Excel(name = "客户名称") private String userName; @Excel(name = "项目名称") private String projectName; @Excel(name = "项目编号") private Integer tid; @Excel(name = "费减",readConverterExp = "0=无费减,1=有费减") private Integer costReduction; @Excel(name = "营销员") private String salesmanName; @Excel(name = "咨询师") private String techName; @Excel(name = "派单部门") private String depName; @Excel(name = "录入人") private String inputName; @Excel(name = "录入时间") private String createTimes; @Excel(name = "跟进人") private String aname; private List inputDep; private List followDep; private String updateTimes; private String startDates; private String endDates; private String departmentId; private String createStarts; private String createEnds; private Integer isFollow; public List getInputDep() { return inputDep; } public void setInputDep(List inputDep) { this.inputDep = inputDep; } public List getFollowDep() { return followDep; } public void setFollowDep(List followDep) { this.followDep = followDep; } public Integer getCostReduction() { return costReduction; } public void setCostReduction(Integer costReduction) { this.costReduction = costReduction; } public BigDecimal getPatentAmount() { return patentAmount; } public void setPatentAmount(BigDecimal patentAmount) { this.patentAmount = patentAmount; } public BigDecimal getDelayingAmount() { return delayingAmount; } public void setDelayingAmount(BigDecimal delayingAmount) { this.delayingAmount = delayingAmount; } public BigDecimal getRecoveryAmount() { return recoveryAmount; } public void setRecoveryAmount(BigDecimal recoveryAmount) { this.recoveryAmount = recoveryAmount; } public String getPatentNo() { return patentNo; } public void setPatentNo(String patentNo) { this.patentNo = patentNo; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getType() { return type; } public void setType(Integer type) { this.type = type; } public String getHolders() { return holders; } public void setHolders(String holders) { this.holders = holders; } public String getInventor() { return inventor; } public void setInventor(String inventor) { this.inventor = inventor; } public Integer getAnnualFeeStatus() { return annualFeeStatus; } public void setAnnualFeeStatus(Integer annualFeeStatus) { this.annualFeeStatus = annualFeeStatus; } public Integer getSalesmanRemind() { return salesmanRemind; } public void setSalesmanRemind(Integer salesmanRemind) { this.salesmanRemind = salesmanRemind; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getProjectName() { return projectName; } public void setProjectName(String projectName) { this.projectName = projectName; } public Integer getTid() { return tid; } public void setTid(Integer tid) { this.tid = tid; } public String getInputName() { return inputName; } public void setInputName(String inputName) { this.inputName = inputName; } public String getApplyDates() { return applyDates; } public void setApplyDates(String applyDates) { this.applyDates = applyDates; } public String getAuthorizationDates() { return authorizationDates; } public void setAuthorizationDates(String authorizationDates) { this.authorizationDates = authorizationDates; } public String getAname() { return aname; } public void setAname(String aname) { this.aname = aname; } public String getCreateTimes() { return createTimes; } public void setCreateTimes(String createTimes) { this.createTimes = createTimes; } public String getUpdateTimes() { return updateTimes; } public void setUpdateTimes(String updateTimes) { this.updateTimes = updateTimes; } public String getEndDates() { return endDates; } public void setEndDates(String endDates) { this.endDates = endDates; } public String getDepName() { return depName; } public void setDepName(String depName) { this.depName = depName; } public String getDepartmentId() { return departmentId; } public void setDepartmentId(String departmentId) { this.departmentId = departmentId; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getStartDates() { return startDates; } public void setStartDates(String startDates) { this.startDates = startDates; } public String getCreateStarts() { return createStarts; } public void setCreateStarts(String createStarts) { this.createStarts = createStarts; } public String getCreateEnds() { return createEnds; } public void setCreateEnds(String createEnds) { this.createEnds = createEnds; } public String getSalesmanName() { return salesmanName; } public void setSalesmanName(String salesmanName) { this.salesmanName = salesmanName; } public String getTechName() { return techName; } public void setTechName(String techName) { this.techName = techName; } public Integer getIsFollow() { return isFollow; } public void setIsFollow(Integer isFollow) { this.isFollow = isFollow; } }