Commit e9864531 by wangli

新增数据库表ORM

1 parent b21a6be3
package com.alibaba.cloud.integration.order.dao;
import com.alibaba.cloud.integration.order.entity.EngineerBusiness;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface EngineerBusinessDao extends BaseMapper<EngineerBusiness> {
}
package com.alibaba.cloud.integration.order.entity;
import lombok.Data;
import java.sql.Timestamp;
@Data
public class EngineerBusiness {
private Integer id;
private String engineerCode;
private Integer maxNum;
private Integer maxMinute;
private Integer maxDistance;
private String address;
private String x;
private String y;
private Integer priority;
private Integer departure;
private String memo;
private Timestamp createTime;
private Timestamp updateTime;
}
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!