feat:auditApprove
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package com.cool.store.dto;
|
||||
|
||||
import com.cool.store.vo.BaseInfoVO;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2025/9/8 10:13
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class ContractInformationDTO {
|
||||
@ApiModelProperty("门店ID")
|
||||
private Long shopId;
|
||||
@ApiModelProperty("门店名称")
|
||||
private String shopName;
|
||||
@ApiModelProperty("品牌方名称")
|
||||
private String brandName;
|
||||
@ApiModelProperty("支付方信息")
|
||||
private String payee;
|
||||
@ApiModelProperty("签约人1名称")
|
||||
private String sign1Name;
|
||||
@ApiModelProperty("签约人2名称")
|
||||
private String sign2Name;
|
||||
@ApiModelProperty("加盟模式")
|
||||
private Integer joinModel;
|
||||
@ApiModelProperty("每年加盟费")
|
||||
private String yearFranchiseFee;
|
||||
@ApiModelProperty("保证金")
|
||||
private String loanMargin;
|
||||
@ApiModelProperty("第一年度管理费")
|
||||
private String firstYearManagementFee;
|
||||
@ApiModelProperty("第一年度品牌使用费")
|
||||
private String firstYearFee;
|
||||
@ApiModelProperty("设计费")
|
||||
private String performanceBond;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user