Merge remote-tracking branch 'origin/test' into test
commit
d9bcdca66a
@ -0,0 +1,26 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesShiftRest;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description:
|
||||||
|
* @Reference:
|
||||||
|
* @Author: wangjie
|
||||||
|
* @CreateDate: 2019\10\24 22:04
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class MesShiftRestModel extends MesShiftRest {
|
||||||
|
|
||||||
|
@ApiParam("开始时间")
|
||||||
|
private String startDate;
|
||||||
|
|
||||||
|
@ApiParam("结束时间")
|
||||||
|
private String endDate;
|
||||||
|
|
||||||
|
@ApiParam("实际时间差(毫秒)")
|
||||||
|
private Long subTimes;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,47 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.bean;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.annotation.DynamicField;
|
||||||
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||||
|
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
||||||
|
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;
|
||||||
|
/**
|
||||||
|
* @Description 供应商道口信息
|
||||||
|
* @Reference
|
||||||
|
* @Author dragon
|
||||||
|
* @CreateDate 2020/11/25 13:43
|
||||||
|
* @Modify
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name="WMS_VENDOR_DOCK")
|
||||||
|
@Api("供应商道口信息")
|
||||||
|
public class WmsVendorDock extends BaseBean {
|
||||||
|
private static final long serialVersionUID = 662346332597842770L;
|
||||||
|
|
||||||
|
@Column(name="VENDOR_NO")
|
||||||
|
@ApiParam("供应商编号")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String vendorNo;
|
||||||
|
|
||||||
|
@Column(name="DOCK_CODE")
|
||||||
|
@ApiParam("道口代码")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String dockCode;
|
||||||
|
|
||||||
|
@Column(name="DOCK_ADDRESS")
|
||||||
|
@ApiParam("道口发运地址")
|
||||||
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.TEXT)
|
||||||
|
private String dockAddress;
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsVendorDock;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsVendorWindow;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 供应商道口DAO层
|
||||||
|
* @Reference
|
||||||
|
* @Author dragon
|
||||||
|
* @CreateDate 2020/11/25 14:43
|
||||||
|
* @Modify
|
||||||
|
*/
|
||||||
|
@Repository
|
||||||
|
public interface WmsVendorDockRepository extends BaseRepository<WmsVendorDock, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue