合同加字段
This commit is contained in:
@@ -83,4 +83,7 @@ public class SignFranchiseDO {
|
||||
//签约人1第几家分店
|
||||
@Column(name = "partnership_signatory_first_which_store")
|
||||
private Integer partnershipSignatoryFirstWhichStore;
|
||||
//是否统管 : 1-统管,0-不统管',
|
||||
@Column(name = "unified_management")
|
||||
private Integer unifiedManagement;
|
||||
}
|
||||
|
||||
@@ -149,6 +149,9 @@ public class AddSignFranchiseRequest {
|
||||
@NotNull(message = "门店属性(装修)不能为空")
|
||||
private Integer shopDecorationAttributes;
|
||||
|
||||
@ApiModelProperty("是否统管 : 1-统管,0-不统管")
|
||||
private Integer unifiedManagement;
|
||||
|
||||
|
||||
|
||||
public SignFranchiseDO toSignFranchiseDO() {
|
||||
@@ -180,6 +183,7 @@ public class AddSignFranchiseRequest {
|
||||
signFranchiseDO.setIntroduceStore(this.introduceStore);
|
||||
signFranchiseDO.setIntroductionAward(this.introductionAward);
|
||||
signFranchiseDO.setPartnershipSignatoryFirstWhichStore(this.partnershipSignatoryFirstWhichStore);
|
||||
signFranchiseDO.setUnifiedManagement(this.unifiedManagement);
|
||||
return signFranchiseDO;
|
||||
}
|
||||
|
||||
|
||||
@@ -238,4 +238,8 @@ public class AddSignFranchiseResponse {
|
||||
@ApiModelProperty("门店装修属性 0-新开店 1-老店新开 2-老店翻新 3-迁址")
|
||||
private Integer shopDecorationAttributes;
|
||||
|
||||
@ApiModelProperty("是否统管 : 1-统管,0-不统管")
|
||||
private Integer unifiedManagement;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user