采购物料

parent 62d62776
package com.aps.entity;
import lombok.Data;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
@Data
public class MaterialPurchase {
private LocalDateTime creationtime;
private Long creatoruserid;
private LocalDateTime lastmodificationtime;
private Long lastmodifieruserid;
private Long isdeleted;
private LocalDateTime deletiontime;
private Long deleteruserid;
private String materialId;
private String materialCode;
private String materialName;
private Long measureUnit;
private String measureUnitName;
private Long supplyId;
private String supplyName;
private String supplyCode;
private BigDecimal price;
private Integer purchaseCycle;
private Integer inspectionCycle;
private Long id;
}
\ No newline at end of file
package com.aps.mapper;
import com.aps.entity.MaterialPurchase;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* 物料采购表 Mapper 接口
* </p>
*
* @author MyBatis-Plus
* @since 2026-01-07
*/
public interface MaterialPurchaseMapper extends BaseMapper<MaterialPurchase> {
}
package com.aps.service;
import com.aps.entity.MaterialPurchase;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* <p>
* 物料采购表 服务类
* </p>
*
* @author MyBatis-Plus
* @since 2026-01-07
*/
public interface MaterialPurchaseService extends IService<MaterialPurchase> {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment