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

siteId默认值为-1改为null

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