| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- package com.goafanti.common.model;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * t_task_mid
- * @author
- */
- public class TTaskMid implements Serializable {
- /**
- * 编号
- */
- private Integer id;
- /**
- * 项目id
- */
- private Integer tid;
- /**
- * 成本金额
- */
- private BigDecimal costAmount;
- /**
- * 付款金额
- */
- private BigDecimal partyAmount;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 证书数量
- */
- private Integer certificatesCount;
- /**
- * 加急天数
- */
- private Integer urgentDay;
- /**
- * 有无材料
- */
- private Integer ifMaterial;
- /**
- * 驳回数
- */
- private Integer rejectCount;
- /**
- * 受理数
- */
- private Integer acceptCount;
- /**
- * 完结数
- */
- private Integer endCount;
- /**
- * 授权数
- */
- private Integer authorizeCount;
- /**
- * 申请数
- */
- private Integer applyCount;
- /**
- * 高新复审 0否 1是
- */
- private Integer highNewRetrial;
- /**
- * 派单数
- */
- private Integer dispatchCount;
- /**
- * 库存数
- */
- private Integer stockCount;
- /**
- * 完成数
- */
- private Integer completeCount;
- /**
- * 公示数
- */
- private Integer promulgateCount;
- /**
- * 派单省份
- */
- private Integer dispatchProvince;
- /**
- * 责任部门
- */
- private String dutyDep;
- /**
- * 立项数
- */
- private Integer setUpCount;
- /**
- * 抽查数
- */
- private Integer spotCheckCount;
- /**
- * 未通过数
- */
- private Integer failCount;
- private static final long serialVersionUID = 1L;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getTid() {
- return tid;
- }
- public void setTid(Integer tid) {
- this.tid = tid;
- }
- public BigDecimal getCostAmount() {
- return costAmount;
- }
- public void setCostAmount(BigDecimal costAmount) {
- this.costAmount = costAmount;
- }
- public BigDecimal getPartyAmount() {
- return partyAmount;
- }
- public void setPartyAmount(BigDecimal partyAmount) {
- this.partyAmount = partyAmount;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public Integer getCertificatesCount() {
- return certificatesCount;
- }
- public void setCertificatesCount(Integer certificatesCount) {
- this.certificatesCount = certificatesCount;
- }
- public Integer getUrgentDay() {
- return urgentDay;
- }
- public void setUrgentDay(Integer urgentDay) {
- this.urgentDay = urgentDay;
- }
- public Integer getIfMaterial() {
- return ifMaterial;
- }
- public void setIfMaterial(Integer ifMaterial) {
- this.ifMaterial = ifMaterial;
- }
- public Integer getRejectCount() {
- return rejectCount;
- }
- public void setRejectCount(Integer rejectCount) {
- this.rejectCount = rejectCount;
- }
- public Integer getAcceptCount() {
- return acceptCount;
- }
- public void setAcceptCount(Integer acceptCount) {
- this.acceptCount = acceptCount;
- }
- public Integer getEndCount() {
- return endCount;
- }
- public void setEndCount(Integer endCount) {
- this.endCount = endCount;
- }
- public Integer getAuthorizeCount() {
- return authorizeCount;
- }
- public void setAuthorizeCount(Integer authorizeCount) {
- this.authorizeCount = authorizeCount;
- }
- public Integer getApplyCount() {
- return applyCount;
- }
- public void setApplyCount(Integer applyCount) {
- this.applyCount = applyCount;
- }
- public Integer getHighNewRetrial() {
- return highNewRetrial;
- }
- public void setHighNewRetrial(Integer highNewRetrial) {
- this.highNewRetrial = highNewRetrial;
- }
- public Integer getDispatchCount() {
- return dispatchCount;
- }
- public void setDispatchCount(Integer dispatchCount) {
- this.dispatchCount = dispatchCount;
- }
- public Integer getStockCount() {
- return stockCount;
- }
- public void setStockCount(Integer stockCount) {
- this.stockCount = stockCount;
- }
- public Integer getCompleteCount() {
- return completeCount;
- }
- public void setCompleteCount(Integer completeCount) {
- this.completeCount = completeCount;
- }
- public Integer getPromulgateCount() {
- return promulgateCount;
- }
- public void setPromulgateCount(Integer promulgateCount) {
- this.promulgateCount = promulgateCount;
- }
- public Integer getDispatchProvince() {
- return dispatchProvince;
- }
- public void setDispatchProvince(Integer dispatchProvince) {
- this.dispatchProvince = dispatchProvince;
- }
- public String getDutyDep() {
- return dutyDep;
- }
- public void setDutyDep(String dutyDep) {
- this.dutyDep = dutyDep;
- }
- public Integer getSetUpCount() {
- return setUpCount;
- }
- public void setSetUpCount(Integer setUpCount) {
- this.setUpCount = setUpCount;
- }
- public Integer getSpotCheckCount() {
- return spotCheckCount;
- }
- public void setSpotCheckCount(Integer spotCheckCount) {
- this.spotCheckCount = spotCheckCount;
- }
- public Integer getFailCount() {
- return failCount;
- }
- public void setFailCount(Integer failCount) {
- this.failCount = failCount;
- }
- public TTaskMid(Integer tid, BigDecimal costAmount) {
- this.tid = tid;
- this.costAmount = costAmount;
- }
- public TTaskMid() {
- }
- }
|