| | |
| | | package com.dsh.course.feignClient.activity.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.extension.activerecord.Model; |
| | | import lombok.Data; |
| | |
| | | /** |
| | | * 主键 |
| | | */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | /** |
| | | * 运营商id 选择默认传null |
| | | */ |
| | | @TableField("operatorId") |
| | | private Integer operatorId; |
| | | /** |
| | | *添加人员说明文案 |
| | | */ |
| | | @TableField("addUserRemark") |
| | | private String addUserRemark; |
| | | /** |
| | | *选择人员说明文案 |
| | | */ |
| | | @TableField("selectUserRemark") |
| | | private String selectUserRemark; |
| | | /** |
| | | * 门店无惠民卡介绍页 |
| | | */ |
| | | private String storeNoHuiminCardIntro; |
| | | |
| | | private String agreementSettings; |
| | | |
| | | private List<THuiminAgreementSetting> tHuiminAgreementSettingList; |
| | | private Integer objectType; |
| | | @Override |
| | | protected Serializable pkVal() { |
| | | return this.id; |