| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- package com.goafanti.common.model;
- import java.util.Date;
- import org.apache.commons.lang3.time.DateFormatUtils;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- public class OrgActivity {
- private String id;
- private String uid;
- /**
- * 研发活动编号
- */
- private String activityNumber;
- /**
- * 研发活动名称
- */
- private String activityName;
- /**
- * 开始日期
- */
- private Date startDate;
- /**
- * 结束日期
- */
- private Date endDate;
-
- /**
- * 参与人员
- */
- private String participant;
-
- /**
- * 是否是内部立项
- */
- private Integer projectMode;
- /**
- * 技术领域1st select
- */
- private String technicalField1;
- /**
- * 技术领域2nd select
- */
- private String technicalField2;
- /**
- * 技术领域3rd select
- */
- private String technicalField3;
- /**
- * 技术来源
- */
- private Integer technicalSource;
- /**
- * 知识产权编号
- */
- private String intellectualPropertyNumber;
- /**
- * 研发经费总预算(万元)
- */
- private Integer budget;
- /**
- * 第一年研发经费支出(万元)
- */
- private Integer firstYearExpenditure;
- /**
- * 第二年研发经费支出(万元)
- */
- private Integer secondYearExpenditure;
- /**
- * 第三年研发经费支出(万元)
- */
- private Integer thirdYearExpenditure;
- /**
- * 目的及组织实施方式
- */
- private String implement;
- /**
- * 核心技术及创新点
- */
- private String technologyInnovation;
- /**
- * 取得的阶段性成果
- */
- private String achievement;
-
- /**
- * 立项证明材料URL
- */
- private String proofUrl;
-
- /**
- * 删除标记
- */
- private Integer deletedSign;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getUid() {
- return uid;
- }
- public void setUid(String uid) {
- this.uid = uid;
- }
- public String getActivityNumber() {
- return activityNumber;
- }
- public void setActivityNumber(String activityNumber) {
- this.activityNumber = activityNumber;
- }
- public String getActivityName() {
- return activityName;
- }
- public void setActivityName(String activityName) {
- this.activityName = activityName;
- }
- public Date getStartDate() {
- return startDate;
- }
- public void setStartDate(Date startDate) {
- this.startDate = startDate;
- }
- public Date getEndDate() {
- return endDate;
- }
-
- public String getParticipant() {
- return participant;
- }
- public void setParticipant(String participant) {
- this.participant = participant;
- }
- public void setEndDate(Date endDate) {
- this.endDate = endDate;
- }
- public String getTechnicalField1() {
- return technicalField1;
- }
- public void setTechnicalField1(String technicalField1) {
- this.technicalField1 = technicalField1;
- }
- public String getTechnicalField2() {
- return technicalField2;
- }
- public void setTechnicalField2(String technicalField2) {
- this.technicalField2 = technicalField2;
- }
- public String getTechnicalField3() {
- return technicalField3;
- }
- public void setTechnicalField3(String technicalField3) {
- this.technicalField3 = technicalField3;
- }
- public Integer getTechnicalSource() {
- return technicalSource;
- }
- public void setTechnicalSource(Integer technicalSource) {
- this.technicalSource = technicalSource;
- }
- public String getIntellectualPropertyNumber() {
- return intellectualPropertyNumber;
- }
- public void setIntellectualPropertyNumber(String intellectualPropertyNumber) {
- this.intellectualPropertyNumber = intellectualPropertyNumber;
- }
- public Integer getBudget() {
- return budget;
- }
- public void setBudget(Integer budget) {
- this.budget = budget;
- }
- public Integer getFirstYearExpenditure() {
- return firstYearExpenditure;
- }
- public void setFirstYearExpenditure(Integer firstYearExpenditure) {
- this.firstYearExpenditure = firstYearExpenditure;
- }
- public Integer getSecondYearExpenditure() {
- return secondYearExpenditure;
- }
- public void setSecondYearExpenditure(Integer secondYearExpenditure) {
- this.secondYearExpenditure = secondYearExpenditure;
- }
- public Integer getThirdYearExpenditure() {
- return thirdYearExpenditure;
- }
- public void setThirdYearExpenditure(Integer thirdYearExpenditure) {
- this.thirdYearExpenditure = thirdYearExpenditure;
- }
- public String getImplement() {
- return implement;
- }
- public void setImplement(String implement) {
- this.implement = implement;
- }
- public String getTechnologyInnovation() {
- return technologyInnovation;
- }
- public void setTechnologyInnovation(String technologyInnovation) {
- this.technologyInnovation = technologyInnovation;
- }
- public String getAchievement() {
- return achievement;
- }
- public void setAchievement(String achievement) {
- this.achievement = achievement;
- }
-
-
-
- public Integer getProjectMode() {
- return projectMode;
- }
- public void setProjectMode(Integer projectMode) {
- this.projectMode = projectMode;
- }
- public String getProofUrl() {
- return proofUrl;
- }
- public void setProofUrl(String proofUrl) {
- this.proofUrl = proofUrl;
- }
- @JsonIgnore
- public Integer getDeletedSign() {
- return deletedSign;
- }
- public void setDeletedSign(Integer deletedSign) {
- this.deletedSign = deletedSign;
- }
- public String getStartDateFormattedDate(){
- if (this.startDate == null) {
- return null;
- } else {
- return DateFormatUtils.format(this.getStartDate(), "yyyy-MM-dd");
- }
- }
-
- public void setStartDateFormattedDate(String startDateFormattedDate){
-
- }
-
- public String getEndDateFormattedDate(){
- if (this.endDate == null) {
- return null;
- } else {
- return DateFormatUtils.format(this.getEndDate(), "yyyy-MM-dd");
- }
- }
-
- public void setEndDateFormattedDate(String endDateFormattedDate){
-
- }
- }
|