Channel.java 668 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.cyksj.model.entity;
  2. import com.ejlchina.searcher.bean.SearchBean;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. /**
  6. * @author chan
  7. * @date 2022/12/13 2:26 PM
  8. */
  9. @Getter
  10. @Setter
  11. @SearchBean(tables = "channel c",
  12. where = ":condition:")
  13. public class Channel extends BaseEntity{
  14. /**
  15. * 渠道名称
  16. */
  17. private String name;
  18. /**
  19. * 微信商户
  20. */
  21. private String wxShopId;
  22. /**
  23. * 支付宝商户
  24. */
  25. private String zfbShopId;
  26. /**
  27. * 域名
  28. */
  29. private String host;
  30. /**
  31. * 备注
  32. */
  33. private String remark;
  34. /**
  35. * 创建人
  36. */
  37. private String creator;
  38. }