123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package com.jd.brume.entity.func;
- import java.util.Date;
- import com.baomidou.mybatisplus.core.toolkit.support.SFunction;
- import com.jd.brume.entity.LogEntity;
- public class LogFunc {
- public static SFunction<LogEntity, Integer> id() {
- SFunction<LogEntity, Integer> f = LogEntity::getId;
- return f;
- }
-
- public static SFunction<LogEntity, Integer> opertateId() {
- SFunction<LogEntity, Integer> f = LogEntity::getOpertateId;
- return f;
- }
- public static SFunction<LogEntity, String> opertateIp() {
- SFunction<LogEntity, String> f = LogEntity::getOpertateIp;
- return f;
- }
- public static SFunction<LogEntity, String> opertateType() {
- SFunction<LogEntity, String> f = LogEntity::getOpertateType;
- return f;
- }
- public static SFunction<LogEntity, String> opertateName() {
- SFunction<LogEntity, String> f = LogEntity::getOpertateName;
- return f;
- }
- public static SFunction<LogEntity, Date> opertateTime() {
- SFunction<LogEntity, Date> f = LogEntity::getOpertateTime;
- return f;
- }
- public static SFunction<LogEntity, String> opertateModule() {
- SFunction<LogEntity, String> f = LogEntity::getOpertateModule;
- return f;
- }
- public static SFunction<LogEntity, String> opertateDesc() {
- SFunction<LogEntity, String> f = LogEntity::getOpertateDesc;
- return f;
- }
- public static SFunction<LogEntity, String> opertateStatus() {
- SFunction<LogEntity, String> f = LogEntity::getOpertateStatus;
- return f;
- }
- public static SFunction<LogEntity, String> oldMsg() {
- SFunction<LogEntity, String> f = LogEntity::getOldMsg;
- return f;
- }
- public static SFunction<LogEntity, String> newMsg() {
- SFunction<LogEntity, String> f = LogEntity::getNewMsg;
- return f;
- }
- public static SFunction<LogEntity, Date> createTime() {
- SFunction<LogEntity, Date> f = LogEntity::getCreateTime;
- return f;
- }
- }
|