Merge branch 'test' into ext-dev
commit
ddc10672c4
@ -0,0 +1,45 @@
|
|||||||
|
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.*;
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :解锁密码
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic
|
||||||
|
* @CreateDate : 2021-10-08
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Inheritance(strategy = InheritanceType.JOINED)
|
||||||
|
@Table(name = "MES_UNLOCK_PASSWORD")
|
||||||
|
@Api("mes解锁密码表")
|
||||||
|
public class MesUnlockPassword extends BaseBean implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -3534232746289126115L;
|
||||||
|
|
||||||
|
@Column(name = "EMPLOYEE_NUMBER")
|
||||||
|
@ApiParam("员工编号")
|
||||||
|
private String employeeNumber;
|
||||||
|
|
||||||
|
@Column(name = "EMPLOYEE_NAME")
|
||||||
|
@ApiParam("员工姓名")
|
||||||
|
private String employeeName;
|
||||||
|
|
||||||
|
@Column(name = "UNLOCK_PASSWORD")
|
||||||
|
@ApiParam("解锁密码")
|
||||||
|
private String unlockPassword;
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesUnlockPassword;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : wangjie
|
||||||
|
* @CreateDate : 2019-10-11
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Repository
|
||||||
|
public interface MesUnlockPasswordRepository extends BaseRepository<MesUnlockPassword, Long> {
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.platform.job.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.platform.platbean.SysLogTaskTime;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author ns
|
||||||
|
* @create 2021/10/12 0012 下午 16:21
|
||||||
|
*/
|
||||||
|
@Repository
|
||||||
|
public interface SysLogTaskTimeRepository extends BaseRepository<SysLogTaskTime,Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue