| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- package com.goafanti.order.bo;
- import java.math.BigDecimal;
- import java.util.List;
- import com.goafanti.common.model.TOrderTask;
- import com.goafanti.common.utils.excel.Excel;
- import com.goafanti.order.enums.NewProjectStatus;
- public class TOrderTaskBo extends TOrderTask{
- /**
- *
- */
- private static final long serialVersionUID = 1L;
- private String contactsMobile;
- @Excel(name = "合同编号",sort = 9)
- private String cname;
- private Integer cSort;
- @Excel(name = "合同编号",sort = 1)
- private String contractNo;
- @Excel(name = "订单负责人",sort = 4)
- private String salesmanName;
- @Excel(name = "项目负责人",sort = 7)
- private String contacts;
- @Excel(name = "订单部门",sort = 5)
- private String depName;
- @Excel(name = "客户名称",sort = 3)
- private String userName;
- @Excel(name = "订单状态",sort = 6,readConverterExp = "0=待签单,1=签单待审,2=签单审核通过,3=签单审核拒绝,4=已结项,5=已驳回,6=已退单")
- private Integer orderStatus;
- private Integer type;
- private BigDecimal price;
- private BigDecimal appropriationRatio;
- private Integer patentType;
- private String patentTypeName;
- private Integer patentTransfer;
- private String email;
- private String name;
- @Excel(name = "项目状态",sort = 13)
- private String projectStatusName;
- private String serviceLife;
- private String serviceYear;
- private String contractTerm;
- private Integer yearSum;
- private String lastYear;
- private BigDecimal lastYearCapital;
- private BigDecimal lastYearIncome;
- public String getLastYear() {
- return lastYear;
- }
- public void setLastYear(String lastYear) {
- this.lastYear = lastYear;
- }
- public BigDecimal getLastYearCapital() {
- return lastYearCapital;
- }
- public void setLastYearCapital(BigDecimal lastYearCapital) {
- this.lastYearCapital = lastYearCapital;
- }
- public BigDecimal getLastYearIncome() {
- return lastYearIncome;
- }
- public void setLastYearIncome(BigDecimal lastYearIncome) {
- this.lastYearIncome = lastYearIncome;
- }
- private List<TOrderTaskListBo> splitList;
- public List<TOrderTaskListBo> getSplitList() {
- return splitList;
- }
- public void setSplitList(List<TOrderTaskListBo> splitList) {
- this.splitList = splitList;
- }
- public String getContractTerm() {
- return contractTerm;
- }
- public void setContractTerm(String contractTerm) {
- this.contractTerm = contractTerm;
- }
- public String getServiceLife() {
- return serviceLife;
- }
- public void setServiceLife(String serviceLife) {
- this.serviceLife = serviceLife;
- }
- public String getServiceYear() {
- return serviceYear;
- }
- public void setServiceYear(String serviceYear) {
- this.serviceYear = serviceYear;
- }
- public Integer getYearSum() {
- return yearSum;
- }
- public void setYearSum(Integer yearSum) {
- this.yearSum = yearSum;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getEmail() {
- return email;
- }
- public void setEmail(String email) {
- this.email = email;
- }
- public Integer getPatentTransfer() {
- return patentTransfer;
- }
- public void setPatentTransfer(Integer patentTransfer) {
- this.patentTransfer = patentTransfer;
- }
- public Integer getPatentType() {
- return patentType;
- }
- public void setPatentType(Integer patentType) {
- this.patentType = patentType;
- }
- public String getProjectStatusName() {
- return projectStatusName;
- }
- public void setProjectStatusName(String projectStatusName) {
- this.projectStatusName = projectStatusName;
- }
- public void setProjectStatus(Integer projectStatus) {
- super.setProjectStatus(projectStatus);
- this.projectStatusName=NewProjectStatus.getValueByCode(projectStatus);
- }
- public String getContractNo() {
- return contractNo;
- }
- public void setContractNo(String contractNo) {
- this.contractNo = contractNo;
- }
- public String getSalesmanName() {
- return salesmanName;
- }
- public void setSalesmanName(String salesmanName) {
- this.salesmanName = salesmanName;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public String getContacts() {
- return contacts;
- }
- public void setContacts(String contacts) {
- this.contacts = contacts;
- }
- public String getContactsMobile() {
- return contactsMobile;
- }
- public void setContactsMobile(String contactsMobile) {
- this.contactsMobile = contactsMobile;
- }
- public String getCname() {
- return cname;
- }
- public void setCname(String cname) {
- this.cname = cname;
- }
- public Integer getOrderStatus() {
- return orderStatus;
- }
- public void setOrderStatus(Integer orderStatus) {
- this.orderStatus = orderStatus;
- }
- public BigDecimal getPrice() {
- return price;
- }
- public void setPrice(BigDecimal price) {
- this.price = price;
- }
- public Integer getcSort() {
- return cSort;
- }
- public void setcSort(Integer cSort) {
- this.cSort = cSort;
- }
- public BigDecimal getAppropriationRatio() {
- return appropriationRatio;
- }
- public void setAppropriationRatio(BigDecimal appropriationRatio) {
- this.appropriationRatio = appropriationRatio;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public String getPatentTypeName() {
- return patentTypeName;
- }
- public void setPatentTypeName(String patentTypeName) {
- this.patentTypeName = patentTypeName;
- }
- }
|