| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- 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<String> inputDep;
- private List<String> followDep;
- private String updateTimes;
- private String startDates;
- private String endDates;
- private String departmentId;
- private String createStarts;
- private String createEnds;
- private Integer isFollow;
- public List<String> getInputDep() {
- return inputDep;
- }
- public void setInputDep(List<String> inputDep) {
- this.inputDep = inputDep;
- }
- public List<String> getFollowDep() {
- return followDep;
- }
- public void setFollowDep(List<String> 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;
- }
- }
|