2026-04-27 10:27:57 +08:00
|
|
|
package com.labelsys.backend.entity;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
@TableName("sys_config")
|
|
|
|
|
public class SysConfig {
|
|
|
|
|
@TableId(type = IdType.INPUT)
|
|
|
|
|
private Long id;
|
|
|
|
|
private Long companyId;
|
|
|
|
|
private String configType;
|
|
|
|
|
private String configName;
|
|
|
|
|
private String configValue;
|
|
|
|
|
private String status;
|
|
|
|
|
private Long creatorId;
|
2026-04-28 12:15:10 +08:00
|
|
|
private String creatorRole;
|
2026-04-27 10:27:57 +08:00
|
|
|
private LocalDateTime createdAt;
|
|
|
|
|
private LocalDateTime updatedAt;
|
|
|
|
|
}
|