2112A-cloud-resource/cloud-resource-common/src/main/java/com/muyu/resource/domain/SysParam.java

36 lines
719 B
Java
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.muyu.resource.domain;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @Authorzhangchengzhi
* @Packagecom.muyu.cloud.resource.domain
* @Projectcloud-resource
* @nameSysParam
* @Date2024/8/10 10:30
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class SysParam {
private String id;
private String code;
private String isDel;
private String level;
private String name;
private String startNum;
private String endNum;
private String pid;
private String score;
private String weight;
private String defaultStatus;
private String system;
private String orderBy;
private String type;
private String text;
}