mes表名过长不兼容oracle

yun-zuoyi
wynne1005 5 years ago
parent 54dc09ff76
commit 38096fb04e

@ -86,5 +86,5 @@ public class MesBoardPlanCapacity extends BaseBean implements Serializable {
@Transient
@ApiParam("看板时段计划产量")
private List<MesBoardShiftSectionCapacity> boardShiftSectionCapacities;
private List<MesBoardShiftSectionCap> boardShiftSectionCapacities;
}

@ -27,7 +27,7 @@ import java.io.Serializable;
@EqualsAndHashCode(callSuper = true)
@Table(name = "MES_BOARD_SHIFT_SECTION_CAPACITY")
@Api("MES_看板时段计划产量")
public class MesBoardShiftSectionCapacity extends BaseBean implements Serializable {
public class MesBoardShiftSectionCap extends BaseBean implements Serializable {
private static final long serialVersionUID = -1184108324734484237L;

@ -64,7 +64,7 @@ public class BoardModel {
private Integer periodCapacity = 0;
@ApiParam("看板时段计划产量")
private List<MesBoardShiftSectionCapacity> boardShiftSectionCapacityList;
private List<MesBoardShiftSectionCap> boardShiftSectionCapacityList;
@ApiParam("看板设备状态")
private List<MesBoardEquStatus> boardEquStatusList;

@ -20,9 +20,6 @@ import javax.persistence.Transient;
* @Modify:
**/
@Data
@Entity
@DynamicInsert
@DynamicUpdate
@EqualsAndHashCode(callSuper = true)
@Api("组织模型")
public class ProdOrgModel extends BaseBean {

@ -1,7 +1,7 @@
package cn.estsh.i3plus.pojo.mes.repository;
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
import cn.estsh.i3plus.pojo.mes.bean.MesBoardShiftSectionCapacity;
import cn.estsh.i3plus.pojo.mes.bean.MesBoardShiftSectionCap;
import org.springframework.stereotype.Repository;
/**
@ -11,5 +11,5 @@ import org.springframework.stereotype.Repository;
* @Modify:
*/
@Repository
public interface MesBoardShiftSectionCapacityRepository extends BaseRepository<MesBoardShiftSectionCapacity, Long> {
public interface MesBoardShiftSectionCapRepository extends BaseRepository<MesBoardShiftSectionCap, Long> {
}
Loading…
Cancel
Save