修改实体类参数,控制层请求头

This commit is contained in:
吴彭
2024-09-16 22:12:44 +08:00
parent f9142064c9
commit eae806e1c6
14 changed files with 141 additions and 187 deletions

View File

@@ -16,7 +16,7 @@ public class Channel extends BaseEntity
private static final long serialVersionUID = 1L;
/** */
private Long id;
private Integer id;
/** 渠道名称 */
@Excel(name = "渠道名称")
@@ -26,6 +26,10 @@ public class Channel extends BaseEntity
@Excel(name = "渠道签名")
private String channelSign;
/** 渠道类型 1H5 2连登 3半流程 4全流程*/
@Excel(name = "渠道类型")
private String channelType;
/** 扣量比 */
@Excel(name = "扣量比")
private Long score;
@@ -46,12 +50,20 @@ public class Channel extends BaseEntity
@Excel(name = "开启关闭时段")
private String period;
public void setId(Long id)
public void setId(Integer id)
{
this.id = id;
}
public Long getId()
public String getChannelType() {
return channelType;
}
public void setChannelType(String channelType) {
this.channelType = channelType;
}
public Integer getId()
{
return id;
}

View File

@@ -122,4 +122,5 @@ public class Customer extends BaseEntity
@Excel(name = "芝麻分")
private Integer zhiMa;
}