新增窗口时间
parent
dd9ae231c8
commit
16f6861ecd
@ -0,0 +1,43 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 客户窗口时间
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jason
|
||||||
|
* @CreateDate : 2020-04-14
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@Table(name="WMS_CUST_WINDOW")
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Api(value="客户窗口时间",description = "客户窗口时间")
|
||||||
|
public class WmsCustWindow extends BaseBean {
|
||||||
|
|
||||||
|
@Column(name = "CUST_NO")
|
||||||
|
@ApiParam(value = "客户编码")
|
||||||
|
private String custNo;
|
||||||
|
|
||||||
|
@Column(name = "CUST_WINDOW_TIME")
|
||||||
|
@ApiParam(value = "窗口时间")
|
||||||
|
private String custWindowTime;
|
||||||
|
|
||||||
|
@Column(name = "DELAY_HOUR")
|
||||||
|
@ApiParam(value = "容差")
|
||||||
|
private Integer delayHour;
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.wms.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.wms.bean.WmsCustWindow;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 客户窗口时间
|
||||||
|
* @Reference :
|
||||||
|
* @Author : jason
|
||||||
|
* @CreateDate : 2020-04-14
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface WmsCustWindowRepository extends BaseRepository<WmsCustWindow, Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue