You've already forked FrameTour-BE
后台部分修改
This commit is contained in:
@ -20,6 +20,7 @@ public class BrokerEntity {
|
||||
* 推客名称
|
||||
*/
|
||||
private String name;
|
||||
private String phone;
|
||||
/**
|
||||
* 专属优惠码,新建时生成
|
||||
*/
|
||||
@ -30,4 +31,8 @@ public class BrokerEntity {
|
||||
private Integer status;
|
||||
private Date createAt;
|
||||
private Date updateAt;
|
||||
private Integer brokerOrderCount;
|
||||
private Integer brokerOrderAmount;
|
||||
private Date firstBrokerDate;
|
||||
private Date lastBrokerDate;
|
||||
}
|
||||
|
@ -18,6 +18,8 @@ public class BrokerReqQuery extends BaseQueryParameterReq {
|
||||
private Long id;
|
||||
@ApiModelProperty("推客名称")
|
||||
private String name;
|
||||
@ApiModelProperty("手机号")
|
||||
private String phone;
|
||||
@ApiModelProperty("专属优惠码")
|
||||
private String promoCode;
|
||||
@ApiModelProperty("状态,0禁用,1启用")
|
||||
|
@ -0,0 +1,19 @@
|
||||
package com.ycwl.basic.model.pc.scenic.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("scenic_account")
|
||||
public class ScenicAccountEntity {
|
||||
private Long id;
|
||||
private Long scenicId;
|
||||
private Integer isSuper;
|
||||
private String name;
|
||||
private String account;
|
||||
private String password;
|
||||
private Date createTime;
|
||||
private Date updateTime;
|
||||
}
|
@ -22,6 +22,11 @@ public class ScenicAddOrUpdateReq {
|
||||
*/
|
||||
@ApiModelProperty("景区名称")
|
||||
private String name;
|
||||
/**
|
||||
* 景区电话
|
||||
*/
|
||||
@ApiModelProperty("联系电话")
|
||||
private String phone;
|
||||
/**
|
||||
* 景区介绍
|
||||
*/
|
||||
@ -75,4 +80,9 @@ public class ScenicAddOrUpdateReq {
|
||||
private ScenicConfigEntity scenicConfig;
|
||||
@ApiModelProperty("景区源素材价格,元")
|
||||
private BigDecimal price;
|
||||
|
||||
@ApiModelProperty("账号")
|
||||
private String account;
|
||||
@ApiModelProperty("密码")
|
||||
private String password;
|
||||
}
|
||||
|
@ -23,6 +23,16 @@ public class ScenicRespVO {
|
||||
*/
|
||||
@ApiModelProperty("景区名称")
|
||||
private String name;
|
||||
/**
|
||||
* 账号
|
||||
*/
|
||||
@ApiModelProperty("账号")
|
||||
private String account;
|
||||
/**
|
||||
* 联系电话
|
||||
*/
|
||||
@ApiModelProperty("联系电话")
|
||||
private String phone;
|
||||
/**
|
||||
* 景区介绍
|
||||
*/
|
||||
|
Reference in New Issue
Block a user