fix copy bug & add 拷贝开关字段 1-开启 不拷贝 不是1抽取到的都拷贝(空或者0 都拷贝)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user