first commit
parent
7767630fbb
commit
714a32a994
@ -0,0 +1,28 @@
|
||||
//package cn.estsh.i3plus.pojo.screen.annotation;
|
||||
//
|
||||
//import cn.estsh.i3plus.pojo.base.enumutil.ScreenEnumUtil;
|
||||
//
|
||||
//import java.lang.annotation.Documented;
|
||||
//import java.lang.annotation.ElementType;
|
||||
//import java.lang.annotation.Retention;
|
||||
//import java.lang.annotation.RetentionPolicy;
|
||||
//import java.lang.annotation.Target;
|
||||
//
|
||||
///**
|
||||
// * @author Wynne.Lu
|
||||
// * @date 2021/3/30 下午9:11
|
||||
// * @desc
|
||||
// */
|
||||
//@Retention(RetentionPolicy.RUNTIME)
|
||||
//@Target({ElementType.FIELD)
|
||||
//@Documented
|
||||
//public @interface ReferTo {
|
||||
//
|
||||
// ScreenEnumUtil.DATA_RESOURCE_TYPE refType() default ScreenEnumUtil.DATA_RESOURCE_TYPE.ENUM;
|
||||
//
|
||||
// String refWhere();
|
||||
//
|
||||
// String refField();
|
||||
//
|
||||
//
|
||||
//}
|
@ -0,0 +1,34 @@
|
||||
package cn.estsh.i3plus.pojo.screen.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.screen.bean.ScrComponent;
|
||||
import cn.estsh.i3plus.pojo.screen.bean.ScrEventAction;
|
||||
import cn.estsh.i3plus.pojo.screen.bean.ScrLayout;
|
||||
import cn.estsh.i3plus.pojo.screen.bean.ScrModelField;
|
||||
import cn.estsh.i3plus.pojo.screen.bean.ScrPanel;
|
||||
import cn.estsh.i3plus.pojo.screen.bean.rel.ScrComponentModelFieldRel;
|
||||
import cn.estsh.i3plus.pojo.screen.component.base.BaseComponent;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2021/3/28 上午12:42
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
public class ScrPanelComponentQueryModel implements Serializable {
|
||||
private static final long serialVersionUID = 4133777603151273736L;
|
||||
|
||||
private String rowCode;
|
||||
|
||||
private String columnCode;
|
||||
|
||||
private ScrComponent component;
|
||||
|
||||
private List<ScrEventAction> eventActions;
|
||||
|
||||
private List<ScrComponentModelFieldRel> modelFields;
|
||||
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package cn.estsh.i3plus.pojo.screen.model;
|
||||
|
||||
import cn.estsh.i3plus.pojo.screen.bean.ScrLayout;
|
||||
import cn.estsh.i3plus.pojo.screen.bean.ScrPanel;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2021/3/28 下午2:23
|
||||
* @desc
|
||||
*/
|
||||
public class ScrPanelLayoutModel {
|
||||
|
||||
private ScrPanel panel;
|
||||
|
||||
private ScrLayout layout;
|
||||
|
||||
private List<ScrRowColumnModel> rowColumnModels;
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
package cn.estsh.i3plus.pojo.screen.model;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2021/3/28 上午12:42
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
public class ScrScreenPanelCreateModel implements Serializable {
|
||||
private static final long serialVersionUID = -5832175256726333348L;
|
||||
|
||||
private String screenCode;
|
||||
|
||||
private String layoutCode;
|
||||
|
||||
private String rowCode;
|
||||
|
||||
private String columnCode;
|
||||
|
||||
private String panelCode;
|
||||
|
||||
}
|
Loading…
Reference in New Issue