You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
381 B

package com.gaotao.modules.sys.entity;
import jakarta.persistence.*;
import lombok.Data;
@Data
public class SysParametersDefault {
private Double parameterId;
private String module;
private String paraDesc;
private String paraValue;
private String paraType;
private String paraTypeDb;
private String allSiteFlag;
private String remark;
}