| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.cyksj.model.views;
- import com.ejlchina.searcher.bean.DbField;
- import com.ejlchina.searcher.bean.SearchBean;
- import lombok.Data;
- import java.util.Date;
- /**
- * @ClassName advertiserTencentVo
- * @Description 腾讯广告账号
- * @Author Huang yuanzhi
- * @Date 2022/8/5 13:41
- * @Version 1.0.0
- **/
- @Data
- @SearchBean( tables = " tencent_user tu left join tencent_action_set tas on tu.id = tas.user_id")
- public class AdvertisementTencentView {
- @DbField("tu.id")
- private Long id;
- /**
- * 推广账号id
- */
- @DbField("tu.account_id")
- private Long accountId;
- @DbField("tas.name")
- private String name;
- @DbField("tas.user_action_set_id")
- private Long userActionSetId;
- @DbField("tas.status")
- private String status;
- @DbField("tu.created_time")
- private Date createdTime;
- private static final long serialVersionUID = 1L;
- }
|