Commit b890ebc8 authored by gary's avatar gary

1、je + tmsPeriod

parent 3e000f31
...@@ -764,6 +764,17 @@ public class JournalEntryQueryDto { ...@@ -764,6 +764,17 @@ public class JournalEntryQueryDto {
*/ */
private Date updateTime; private Date updateTime;
/**
* Database Column Remarks:
* 税务系统期间 yyyyMM
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column journal_entry.tms_period
*
* @mbg.generated
*/
private Integer tmsPeriod;
public Long getId() { public Long getId() {
return id; return id;
} }
...@@ -1315,4 +1326,12 @@ public class JournalEntryQueryDto { ...@@ -1315,4 +1326,12 @@ public class JournalEntryQueryDto {
public void setUpdateTime(Date updateTime) { public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime; this.updateTime = updateTime;
} }
public Integer getTmsPeriod() {
return tmsPeriod;
}
public void setTmsPeriod(Integer tmsPeriod) {
this.tmsPeriod = tmsPeriod;
}
} }
...@@ -160,6 +160,17 @@ public class JournalEntryDto implements Serializable { ...@@ -160,6 +160,17 @@ public class JournalEntryDto implements Serializable {
*/ */
private String postedStatus; private String postedStatus;
/**
* Database Column Remarks:
* 税务系统期间 yyyyMM
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column journal_entry.tms_period
*
* @mbg.generated
*/
private Integer tmsPeriod;
/** /**
* Database Column Remarks: * Database Column Remarks:
* 会计期间 yyyymm * 会计期间 yyyymm
...@@ -1096,6 +1107,30 @@ public class JournalEntryDto implements Serializable { ...@@ -1096,6 +1107,30 @@ public class JournalEntryDto implements Serializable {
this.postedStatus = postedStatus == null ? null : postedStatus.trim(); this.postedStatus = postedStatus == null ? null : postedStatus.trim();
} }
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column journal_entry.tms_period
*
* @return the value of journal_entry.tms_period
*
* @mbg.generated
*/
public Integer getTmsPeriod() {
return tmsPeriod;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column journal_entry.tms_period
*
* @param tmsPeriod the value for journal_entry.tms_period
*
* @mbg.generated
*/
public void setTmsPeriod(Integer tmsPeriod) {
this.tmsPeriod = tmsPeriod;
}
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method returns the value of the database column journal_entry.period * This method returns the value of the database column journal_entry.period
...@@ -2465,6 +2500,7 @@ public class JournalEntryDto implements Serializable { ...@@ -2465,6 +2500,7 @@ public class JournalEntryDto implements Serializable {
sb.append(", lineNum=").append(lineNum); sb.append(", lineNum=").append(lineNum);
sb.append(", approvalStatus=").append(approvalStatus); sb.append(", approvalStatus=").append(approvalStatus);
sb.append(", postedStatus=").append(postedStatus); sb.append(", postedStatus=").append(postedStatus);
sb.append(", tmsPeriod=").append(tmsPeriod);
sb.append(", period=").append(period); sb.append(", period=").append(period);
sb.append(", accountingDate=").append(accountingDate); sb.append(", accountingDate=").append(accountingDate);
sb.append(", journalSource=").append(journalSource); sb.append(", journalSource=").append(journalSource);
......
...@@ -212,6 +212,9 @@ public class JournalEntryExportDto { ...@@ -212,6 +212,9 @@ public class JournalEntryExportDto {
@ExcelCell(index=64) @ExcelCell(index=64)
private Date lateUpdatedDate; private Date lateUpdatedDate;
@ExcelCell(index=65)
private Integer tmsPeriod;
private Date createTime; private Date createTime;
private Date updateTime; private Date updateTime;
......
...@@ -685,6 +685,7 @@ public class DataPreviewSerivceImpl extends BaseService { ...@@ -685,6 +685,7 @@ public class DataPreviewSerivceImpl extends BaseService {
header.put("CreatedDate","创建日期"); header.put("CreatedDate","创建日期");
header.put("LateUpdatedBy","最后更新人"); header.put("LateUpdatedBy","最后更新人");
header.put("LateUpdatedDate","最后更新日期"); header.put("LateUpdatedDate","最后更新日期");
header.put("tmsPeriod","税务系统期间");
return header; return header;
} }
......
...@@ -156,6 +156,17 @@ public class JournalEntry extends BaseEntity implements Serializable { ...@@ -156,6 +156,17 @@ public class JournalEntry extends BaseEntity implements Serializable {
*/ */
private String postedStatus; private String postedStatus;
/**
* Database Column Remarks:
* 税务系统期间 yyyyMM
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column journal_entry.tms_period
*
* @mbg.generated
*/
private Integer tmsPeriod;
/** /**
* Database Column Remarks: * Database Column Remarks:
* 会计期间 yyyymm * 会计期间 yyyymm
...@@ -221,15 +232,6 @@ public class JournalEntry extends BaseEntity implements Serializable { ...@@ -221,15 +232,6 @@ public class JournalEntry extends BaseEntity implements Serializable {
* @mbg.generated * @mbg.generated
*/ */
private String voucherNum; private String voucherNum;
private BigDecimal periodJrMinDr;
public BigDecimal getPeriodJrMinDr() {
return periodJrMinDr;
}
public void setPeriodJrMinDr(BigDecimal periodJrMinDr) {
this.periodJrMinDr = periodJrMinDr;
}
/** /**
* Database Column Remarks: * Database Column Remarks:
...@@ -1101,6 +1103,30 @@ public class JournalEntry extends BaseEntity implements Serializable { ...@@ -1101,6 +1103,30 @@ public class JournalEntry extends BaseEntity implements Serializable {
this.postedStatus = postedStatus == null ? null : postedStatus.trim(); this.postedStatus = postedStatus == null ? null : postedStatus.trim();
} }
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column journal_entry.tms_period
*
* @return the value of journal_entry.tms_period
*
* @mbg.generated
*/
public Integer getTmsPeriod() {
return tmsPeriod;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column journal_entry.tms_period
*
* @param tmsPeriod the value for journal_entry.tms_period
*
* @mbg.generated
*/
public void setTmsPeriod(Integer tmsPeriod) {
this.tmsPeriod = tmsPeriod;
}
/** /**
* This method was generated by MyBatis Generator. * This method was generated by MyBatis Generator.
* This method returns the value of the database column journal_entry.period * This method returns the value of the database column journal_entry.period
...@@ -2470,6 +2496,7 @@ public class JournalEntry extends BaseEntity implements Serializable { ...@@ -2470,6 +2496,7 @@ public class JournalEntry extends BaseEntity implements Serializable {
sb.append(", lineNum=").append(lineNum); sb.append(", lineNum=").append(lineNum);
sb.append(", approvalStatus=").append(approvalStatus); sb.append(", approvalStatus=").append(approvalStatus);
sb.append(", postedStatus=").append(postedStatus); sb.append(", postedStatus=").append(postedStatus);
sb.append(", tmsPeriod=").append(tmsPeriod);
sb.append(", period=").append(period); sb.append(", period=").append(period);
sb.append(", accountingDate=").append(accountingDate); sb.append(", accountingDate=").append(accountingDate);
sb.append(", journalSource=").append(journalSource); sb.append(", journalSource=").append(journalSource);
......
...@@ -1086,6 +1086,66 @@ public class JournalEntryExample { ...@@ -1086,6 +1086,66 @@ public class JournalEntryExample {
return (Criteria) this; return (Criteria) this;
} }
public Criteria andTmsPeriodIsNull() {
addCriterion("tms_period is null");
return (Criteria) this;
}
public Criteria andTmsPeriodIsNotNull() {
addCriterion("tms_period is not null");
return (Criteria) this;
}
public Criteria andTmsPeriodEqualTo(Integer value) {
addCriterion("tms_period =", value, "tmsPeriod");
return (Criteria) this;
}
public Criteria andTmsPeriodNotEqualTo(Integer value) {
addCriterion("tms_period <>", value, "tmsPeriod");
return (Criteria) this;
}
public Criteria andTmsPeriodGreaterThan(Integer value) {
addCriterion("tms_period >", value, "tmsPeriod");
return (Criteria) this;
}
public Criteria andTmsPeriodGreaterThanOrEqualTo(Integer value) {
addCriterion("tms_period >=", value, "tmsPeriod");
return (Criteria) this;
}
public Criteria andTmsPeriodLessThan(Integer value) {
addCriterion("tms_period <", value, "tmsPeriod");
return (Criteria) this;
}
public Criteria andTmsPeriodLessThanOrEqualTo(Integer value) {
addCriterion("tms_period <=", value, "tmsPeriod");
return (Criteria) this;
}
public Criteria andTmsPeriodIn(List<Integer> values) {
addCriterion("tms_period in", values, "tmsPeriod");
return (Criteria) this;
}
public Criteria andTmsPeriodNotIn(List<Integer> values) {
addCriterion("tms_period not in", values, "tmsPeriod");
return (Criteria) this;
}
public Criteria andTmsPeriodBetween(Integer value1, Integer value2) {
addCriterion("tms_period between", value1, value2, "tmsPeriod");
return (Criteria) this;
}
public Criteria andTmsPeriodNotBetween(Integer value1, Integer value2) {
addCriterion("tms_period not between", value1, value2, "tmsPeriod");
return (Criteria) this;
}
public Criteria andPeriodIsNull() { public Criteria andPeriodIsNull() {
addCriterion("period is null"); addCriterion("period is null");
return (Criteria) this; return (Criteria) this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment