💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
@SqlTranslate(sqlId = "RewardSQL.qryRewardAccountLog") sqlId 为mybatis sql文件里的sqlId,sql中的值从当前实体类中取值 ``` /** * TdMUser扩展 */ @TranslateEnable public class TdMUserExt extends TdMUser { private static final long serialVersionUID = 1L; /** * 佣金账户日志 */ @SqlTranslate(sqlId = "RewardSQL.qryRewardAccountLog") private List<TfBRewardAccountLog> rewardAccountLog; public List<TfBRewardAccountLog> getRewardAccountLog() { return rewardAccountLog; } public void setRewardAccountLog(List<TfBRewardAccountLog> rewardAccountLog) { this.rewardAccountLog = rewardAccountLog; } } ```