| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.cyksj.model.entity;
- import com.ejlchina.searcher.bean.SearchBean;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * @author chan
- * @date 2022/12/13 2:26 PM
- */
- @Getter
- @Setter
- @SearchBean(tables = "channel c",
- where = ":condition:")
- public class Channel extends BaseEntity{
- /**
- * 渠道名称
- */
- private String name;
- /**
- * 微信商户
- */
- private String wxShopId;
- /**
- * 支付宝商户
- */
- private String zfbShopId;
- /**
- * 域名
- */
- private String host;
- /**
- * 备注
- */
- private String remark;
- /**
- * 创建人
- */
- private String creator;
- }
|