Commit 8535598f authored by 廖旭伟's avatar 廖旭伟

siteId默认值为-1改为null

parent 67cbe3f0
...@@ -1765,7 +1765,7 @@ public class MatterPdu extends BaseEntityLong { ...@@ -1765,7 +1765,7 @@ public class MatterPdu extends BaseEntityLong {
public void initAttrValue() { public void initAttrValue() {
this.siteId = -1L; this.siteId = null;
this.tid = ""; this.tid = "";
......
...@@ -1791,7 +1791,7 @@ public class MatterEntity extends MatterVo { ...@@ -1791,7 +1791,7 @@ public class MatterEntity extends MatterVo {
public void initAttrValue() { public void initAttrValue() {
this.siteId = -1L; this.siteId = null;
this.tid = ""; this.tid = "";
......
...@@ -70,7 +70,7 @@ public class ApproverEntity extends ApproverVo { ...@@ -70,7 +70,7 @@ public class ApproverEntity extends ApproverVo {
public void initAttrValue(){ public void initAttrValue(){
this.siteId = -1L; this.siteId = null;
this.fullName = ""; this.fullName = "";
...@@ -80,7 +80,7 @@ public class ApproverEntity extends ApproverVo { ...@@ -80,7 +80,7 @@ public class ApproverEntity extends ApproverVo {
this.loginPwd = ""; this.loginPwd = "";
this.deptId = -1L; this.deptId = null;
this.deptCode = ""; this.deptCode = "";
......
...@@ -66,15 +66,15 @@ public class MatterApplyDatumEntity extends MatterApplyDatumVo { ...@@ -66,15 +66,15 @@ public class MatterApplyDatumEntity extends MatterApplyDatumVo {
public void initAttrValue(){ public void initAttrValue(){
this.siteId = -1L; this.siteId = null;
this.applyId = -1L; this.applyId = null;
this.singleMatterId = -1L; this.singleMatterId = null;
this.matterId = -1L; this.matterId = null;
this.datumId = -1L; this.datumId = null;
this.materialName = ""; this.materialName = "";
......
...@@ -107,11 +107,11 @@ public class MatterApplyEntity extends MatterApplyVo { ...@@ -107,11 +107,11 @@ public class MatterApplyEntity extends MatterApplyVo {
public void initAttrValue(){ public void initAttrValue(){
this.siteId = -1L; this.siteId = null;
this.singleMatterId = -1L; this.singleMatterId = null;
this.matterId = -1L; this.matterId = null;
this.deptCode = ""; this.deptCode = "";
......
...@@ -1789,7 +1789,7 @@ public class MatterEntity extends MatterVo { ...@@ -1789,7 +1789,7 @@ public class MatterEntity extends MatterVo {
public void initAttrValue() { public void initAttrValue() {
this.siteId = -1L; this.siteId = null;
this.tid = ""; this.tid = "";
......
...@@ -58,9 +58,9 @@ public class SingleMatterFileEntity extends SingleMatterFileVo { ...@@ -58,9 +58,9 @@ public class SingleMatterFileEntity extends SingleMatterFileVo {
public void initAttrValue(){ public void initAttrValue(){
this.siteId = -1L; this.siteId = null;
this.matterId = -1L; this.matterId = null;
this.matterName = ""; this.matterName = "";
......
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