Merge remote-tracking branch 'origin/test' into test
commit
e585dce910
@ -0,0 +1,44 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/20 4:47 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_CUSTOMER_DATA")
|
||||
@Api("MES_看板客户相关信息")
|
||||
public class MesBoardCustomerData extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 3871945569470777555L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "COMPLAIN_PLAN_QTY")
|
||||
@ApiParam("客户抱怨目标数量")
|
||||
private Integer complainPlanQty;
|
||||
|
||||
@Column(name = "COMPLAIN_ACTUAL_QTY")
|
||||
@ApiParam("客户抱怨实际数量")
|
||||
private Integer complainActualQty;
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
package cn.estsh.i3plus.pojo.mes.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import javax.persistence.Transient;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/20 4:47 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Table(name = "MES_BOARD_SUBMENU")
|
||||
@Api("MES_看板子菜单")
|
||||
public class MesBoardSubmenu extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 6544735793917822548L;
|
||||
|
||||
@Column(name = "BOARD_CODE")
|
||||
@ApiParam("看板代码")
|
||||
private String boardCode;
|
||||
|
||||
@Column(name = "ITEM_NAME")
|
||||
@ApiParam("子项名称")
|
||||
private String itemName;
|
||||
|
||||
@Column(name = "ICON")
|
||||
@ApiParam("ICO图标")
|
||||
private String icon;
|
||||
|
||||
@Column(name = "SEQ")
|
||||
@ApiParam("顺序号")
|
||||
private Integer seq;
|
||||
|
||||
/**
|
||||
* 10-图片 20-视频
|
||||
*/
|
||||
@Column(name = "SHOW_TYPE")
|
||||
@ApiParam("展示类型")
|
||||
private Integer showType;
|
||||
|
||||
@Column(name = "PICTURE_URL")
|
||||
@ApiParam("图片路径")
|
||||
private String pictureUrl;
|
||||
|
||||
@Column(name = "VIDEO_URL")
|
||||
@ApiParam("视频路径")
|
||||
private String videoUrl;
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBoardCustomerData;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/20 8:53 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Repository
|
||||
public interface MesBoardCustomerDataRepository extends BaseRepository<MesBoardCustomerData, Long> {
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesBoardSubmenu;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Author: jokelin
|
||||
* @Date: 2020/4/20 8:53 下午
|
||||
* @Modify:
|
||||
*/
|
||||
@Repository
|
||||
public interface MesBoardSubMenuRepository extends BaseRepository<MesBoardSubmenu, Long> {
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
package cn.estsh.i3plus.pojo.model.softswitch;
|
||||
|
||||
import cn.estsh.i3plus.pojo.softswitch.bean.BsSuitFile;
|
||||
import cn.estsh.i3plus.pojo.softswitch.bean.BsSuitRecord;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2020-09-28 17:48
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@ApiModel("适配记录模型")
|
||||
public class SuitRecordModel {
|
||||
|
||||
@ApiModelProperty("主记录")
|
||||
private BsSuitRecord bsSuitRecord;
|
||||
|
||||
@ApiModelProperty("适配文件")
|
||||
private BsSuitFile bsSuitFile;
|
||||
|
||||
public SuitRecordModel() {
|
||||
}
|
||||
|
||||
public SuitRecordModel(BsSuitRecord bsSuitRecord, BsSuitFile bsSuitFile) {
|
||||
this.bsSuitRecord = bsSuitRecord;
|
||||
this.bsSuitFile = bsSuitFile;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue