|
|
@@ -9,154 +9,146 @@ import java.util.Date;
|
|
|
* 变更任务表(TChangeTask)实体类
|
|
|
*
|
|
|
* @author makejava
|
|
|
- * @since 2025-01-07 10:29:38
|
|
|
+ * @since 2025-03-27 19:20:08
|
|
|
*/
|
|
|
public class TChangeTask implements Serializable {
|
|
|
- private static final long serialVersionUID = -85255234572445566L;
|
|
|
-/**
|
|
|
+ private static final long serialVersionUID = -96280505167718286L;
|
|
|
+ /**
|
|
|
* 任务编号
|
|
|
*/
|
|
|
private Integer id;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 订单任务编号
|
|
|
*/
|
|
|
private Integer tid;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 变更编号
|
|
|
*/
|
|
|
private Integer cid;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 订单编号
|
|
|
*/
|
|
|
private String orderNo;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 是否为主要任务 0-否,1-是
|
|
|
*/
|
|
|
private Integer main;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 商品id
|
|
|
*/
|
|
|
private String commodityId;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 商品名称(冗余)
|
|
|
*/
|
|
|
private String commodityName;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 商品数量
|
|
|
*/
|
|
|
private Integer commodityQuantity;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 合同商品价格
|
|
|
*/
|
|
|
private BigDecimal commodityPrice;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 任务说明
|
|
|
*/
|
|
|
private String taskComment;
|
|
|
-/**
|
|
|
- * 状态 0正常 1新增 2修改 3删除
|
|
|
+ /**
|
|
|
+ * 状态 0正常 1新增 2修改 3删除
|
|
|
*/
|
|
|
private Integer type;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 创建时间
|
|
|
*/
|
|
|
private Date createTime;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 0否 1父拆分 2子拆分
|
|
|
*/
|
|
|
private Integer splitStatus;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 拆分父id
|
|
|
*/
|
|
|
private Integer splitSuper;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 负责人
|
|
|
*/
|
|
|
private String receiverName;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 官费 0否 1有
|
|
|
*/
|
|
|
private Integer officialCost;
|
|
|
-/**
|
|
|
- * 费减 0否 1有
|
|
|
+ /**
|
|
|
+ * 费减 0否 1有
|
|
|
*/
|
|
|
private Integer costReduction;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 服务年限
|
|
|
*/
|
|
|
private String serviceLife;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 本次年份
|
|
|
*/
|
|
|
private String serviceYear;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 服务年限计数
|
|
|
*/
|
|
|
private Integer yearSum;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 合同期限
|
|
|
*/
|
|
|
private String contractTerm;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 申报批次
|
|
|
*/
|
|
|
private Integer declarationBatch;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 专利分类 0申请 1变更 2复审 3优先权 4恢复请求权 5无效宣告请求费 6强制许可请求费 7 强制许可使用裁决请求费 8登录、印刷费、印花税
|
|
|
*/
|
|
|
private Integer patentType;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 变更拆分父id
|
|
|
*/
|
|
|
private Integer changeSplitSuper;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 上年度年份
|
|
|
*/
|
|
|
private String lastYear;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 上年度总资本
|
|
|
*/
|
|
|
private BigDecimal lastYearCapital;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 上年度总收入
|
|
|
*/
|
|
|
private BigDecimal lastYearIncome;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 高新会员 0=否,1=是
|
|
|
*/
|
|
|
private Integer htMember;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 加急扣除 0=否,1=是
|
|
|
*/
|
|
|
private Integer additionalDeduction;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 研发奖补 0=否,1=是
|
|
|
*/
|
|
|
private Integer rdAwardsubsidy;
|
|
|
-/**
|
|
|
- * 仅做报表,不出备查资料 0=否,1=是
|
|
|
- */
|
|
|
- private Integer justForms;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 科技项目等级 0=简易项目,1=市区级,2=省级,3=国家级
|
|
|
*/
|
|
|
private Integer technologyProjectType;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 申请类型 0=普通申请,1=风险代理
|
|
|
*/
|
|
|
private Integer ordinaryRisk;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 天数 0=普通,1=加急
|
|
|
*/
|
|
|
private Integer days;
|
|
|
-/**
|
|
|
+ /**
|
|
|
* 方案 0=无,1=有
|
|
|
*/
|
|
|
private Integer scheme;
|
|
|
-/**
|
|
|
- * 仅提供单边会员服务 0=否,1=是
|
|
|
- */
|
|
|
- private Integer unilateralService;
|
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
@@ -399,14 +391,6 @@ public class TChangeTask implements Serializable {
|
|
|
this.rdAwardsubsidy = rdAwardsubsidy;
|
|
|
}
|
|
|
|
|
|
- public Integer getJustForms() {
|
|
|
- return justForms;
|
|
|
- }
|
|
|
-
|
|
|
- public void setJustForms(Integer justForms) {
|
|
|
- this.justForms = justForms;
|
|
|
- }
|
|
|
-
|
|
|
public Integer getTechnologyProjectType() {
|
|
|
return technologyProjectType;
|
|
|
}
|
|
|
@@ -439,13 +423,5 @@ public class TChangeTask implements Serializable {
|
|
|
this.scheme = scheme;
|
|
|
}
|
|
|
|
|
|
- public Integer getUnilateralService() {
|
|
|
- return unilateralService;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUnilateralService(Integer unilateralService) {
|
|
|
- this.unilateralService = unilateralService;
|
|
|
- }
|
|
|
-
|
|
|
}
|
|
|
|