fix copy bug & add 拷贝开关字段 1-开启 不拷贝 不是1抽取到的都拷贝(空或者0 都拷贝)

This commit is contained in:
limqhz
2022-02-21 14:41:09 +08:00
parent 0e4a271200
commit 348121af3a
8 changed files with 48 additions and 16 deletions

View File

@@ -163,6 +163,11 @@ public class VenueDTO implements Serializable {
*/
private Integer copyTarget;
/**
* 复制开关 1-关闭,不复制 0-开启,复制
*/
private Integer copyControl;
/**
* 场馆图片列表
*/
@@ -624,4 +629,12 @@ public class VenueDTO implements Serializable {
public void setLimitNoWeek(Integer limitNoWeek) {
this.limitNoWeek = limitNoWeek;
}
public Integer getCopyControl() {
return copyControl;
}
public void setCopyControl(Integer copyControl) {
this.copyControl = copyControl;
}
}

View File

@@ -47,6 +47,11 @@ public class Venue implements Serializable {
*/
private Integer copyTarget;
/**
* 复制开关 1-关闭,不复制 0-开启,复制
*/
private Integer copyControl;
/**
* 地址
*/
@@ -668,4 +673,12 @@ public class Venue implements Serializable {
public void setLimitNoWeek(Integer limitNoWeek) {
this.limitNoWeek = limitNoWeek;
}
public Integer getCopyControl() {
return copyControl;
}
public void setCopyControl(Integer copyControl) {
this.copyControl = copyControl;
}
}