三力士演示demo
parent
f061ff7b73
commit
1581e8b86c
@ -0,0 +1,23 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.bean;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Table;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :刷新计划规则
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jason.niu
|
||||||
|
* @CreateDate : 2020-07-11
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Entity
|
||||||
|
@Table(name = "APS_FLUSH_PLAN_RULE")
|
||||||
|
@Api("刷新计划规则")
|
||||||
|
public class FlushPlanRule extends BaseRule {
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.model;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 表格右键菜单
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class ContextMenu {
|
||||||
|
|
||||||
|
private String text;
|
||||||
|
|
||||||
|
private String uri;
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.model;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ShiftReportModel {
|
||||||
|
private List<String> dates = new ArrayList<>();
|
||||||
|
private List<String> headers = new ArrayList<>();
|
||||||
|
private Set<String> labels = new HashSet<>();
|
||||||
|
|
||||||
|
private List<Map<String, List<String>>> datas = new ArrayList<>();
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.aps.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.aps.bean.FlushPlanRule;
|
||||||
|
import org.springframework.data.repository.CrudRepository;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
@Repository
|
||||||
|
public interface FlushPlanRuleRepository extends CrudRepository<FlushPlanRule, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue